Apple 会因为我的应用程序使用 setStatusBarOrientation 而拒绝我的应用程序吗?
ViewController1 使用纵向。 ViewController2 使用横向方向。如果我使用:
[[UIApplication sharedApplication] setStatusBarOrientation: UIInterfaceOrientationPortrait];
我的应用程序会被拒绝吗?如果我无法使用此通话,我还有其他选择吗?仅仅旋转图像是不够的,因为我需要以正确的方向使用操作表和警报提示。
ViewController1 uses portrait orientation. ViewController2 uses landscape orientation. If I use:
[[UIApplication sharedApplication] setStatusBarOrientation: UIInterfaceOrientationPortrait];
Will my app get rejected? If I can't use this call, what is my other option? Simply rotating the images won't be sufficient since I need to use action sheets and alert prompts in the correct orientation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
根据类文档(http:// /developer.apple.com/library/ios/#documentation/uikit/reference/UIApplication_Class/Reference/Reference.html)它似乎是 API 的记录部分,因此设置有效。
According to the class documentation (http://developer.apple.com/library/ios/#documentation/uikit/reference/UIApplication_Class/Reference/Reference.html) it would appear to be a documented part of the API and therefore valid to set.