开发者

Darken screen, the same way an alert would?

开发者 https://www.devze.com 2023-02-27 05:52 出处:网络
Is there a way to darken the whole screen, the same wa开发者_开发知识库y that it would if an alert was shown?

Is there a way to darken the whole screen, the same wa开发者_开发知识库y that it would if an alert was shown?

If i'd have to go for a custom method of putting a black image over it with a low alpha setting, how would i manage to cover the navigationbar too?


Lower the alpha of the App Delegate's window:

AppDelegate *appDel = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDel.window setAlpha:0.5];
0

精彩评论

暂无评论...
验证码 换一张
取 消