我的应用程序正在计算并在图表中显示结果。当设备旋转时,将UIViewController
生成一个新的以横向视图显示图形。因此必要的参数被传递给新的 ViewController 来创建图表。当计算仍在运行时,当设备转为横向时,应用程序崩溃。
有没有适当的方法来DeviceOrientationNotification
暂时禁用使用的?
-(void)calculate
{
disable DeviceOrientationNotification
...calculation code here
enable DeviceOrientationNotification again
}
谢谢(不要再打我了,即使这个问题看起来很愚蠢)