Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
加载 MFMailComposeViewController 模式视图时,状态栏消失了。如果我导航回其他视图控制器,它将不再出现。所以在加载 MFMailComposeViewController 后,应用程序最终没有状态栏。
有什么办法可以解决吗?
检查启动 MFMailComposeViewController 的代码,以确保它没有隐藏您的状态栏。
同样在 delrgate 上,您可以输入: [[UIApplication sharedApplication] setStatusBarHidden:NO animated:NO];
汤姆。