我的应用程序当前要求用户访问其当前位置,因此当应用程序启动时,它会显示UIAlertView要求它。问题是我的应用程序仅设置为纵向模式,但UIAlertView以横向显示。我必须旋转手机才能正确定位。我在这里缺少什么?
答案 0 :(得分:1)
查看这篇文章:
http://iphonedevelopment.blogspot.com/2008/12/more-on-uialertview-and-landscape.html
基本上你可能需要在警报之前尝试这样的事情。
[[UIApplication sharedApplication] setStatusBarOrientation:UIInterfaceOrientationPortrait];
更新:这是一个有替代解决方案的SO。