2

有什么方法可以在设备方向动画完成之前执行代码?

现在我将自己添加为 UIDeviceOrientationDidChangeNotification 的观察者

但是,我需要在更改实际发生之前完成我的代码,而不是之后。

4

2 回答 2

4
于 2012-06-15T18:38:50.830 回答
2

尝试用这种方法改变它:

- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation
{
    // Return YES for supported orientations
    return (interfaceOrientation == UIInterfaceOrientationPortrait);
}
于 2012-06-16T06:38:59.970 回答