我正在开发针对 iOS 5 的项目。我的定位方法如下。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
NSLog(@" My Orientation");
return YES;
}
但是,当我的应用程序启动时,我的日志消息将在控制台上显示两次,即 MyOrientation
将显示两次。我正在模拟器中测试我的应用程序,这只是在启动时发生,甚至没有改变orientation
,然后甚至改变方向。IE,
(BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
每次都被调用两次,我认为这不是正确的行为。任何帮助都是
赞赏。