我知道这将是一个模糊的问题,但请考虑一下...... 我正在ipad上开发一个书籍阅读器,它有许多功能,如高亮,笔记等,所有这些功能都很好。但问题来自于我在实现任何功能后尝试旋转我的设备..该应用程序在更改itz方向后进行攻击(或挂起)......
任何人都可以告诉我为什么应用程序通常会被绞死????请考虑一下这个。您的意见将帮助我走很长的路........
由于
答案 0 :(得分:0)
问题可能在于您的控制框设置。
如果您的应用程序支持纵向模式,则表示代码如下,
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
其他
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
// Return YES for supported orientations
return YES;
}
并相应地更改控制框架。