[[UIApplication sharedApplication] setStatusBarHidden:YES]; 放在哪里?
我需要一些帮助。我希望我的应用程序运行时没有状态栏。
[[UIApplication sharedApplication] setStatusBarHidden:YES];
我将这一行放入 appDelegate 中,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
也许存在更好的地方?
I need some help. I want that my app runs without status bar.
[[UIApplication sharedApplication] setStatusBarHidden:YES];
I put this line into appDelegate in
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
Maybe exist better place?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在信息 plist 中输入键:
UIStatusBarHidden
,将其设为布尔值并将其设置为YES
。然后您的应用程序将在没有状态栏的情况下启动。You can enter the key:
UIStatusBarHidden
in your info plist, make it a boolean value and set it toYES
. Then your app will start without the status bar.您可以将其设置在任何您想要的地方:-)最好是您想要隐藏它的地方:)
You can set it anywhere you want :-) Preferly where you want to hide it :)