从 UIActivityViewController 中选择一个事件(邮件、消息等)后,我们如何更改打开的模态视图 Controller 的颜色。
我尝试将 Status bar style 设置为 UIStatusBarStyleLightContent ,但没有成功。 基于 View Controller 的状态栏外观 设置为NO 。我的应用程序有许多 UIViewController s,我需要状态栏文本的颜色为白色,而在某些情况下,我需要它为黑色,我需要状态栏文本的颜色从 UIActivityViewController 打开事件时为白色。如何实现?
我尝试了 here 中的一些内容通过以下方式 -
[self presentViewController:activityVC animated:YES completion:^{
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
}];
但它不起作用。
Best Answer-推荐答案 strong>
据我所知,除了你的方法,我们可以用这个方法
- (UIStatusBarStyle)preferredStatusBarStyle
activityVC 所在的地方,并返回 UIStatusBarStyleLightContent.Hope 来帮助你。
关于ios - 更改从 UIActivityViewController 打开的模态视图 Controller 的状态栏文本颜色,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/37787516/
|