我正在编写一个检查设备方向的应用程序,因此,我有以下代码块:
[[UIDevice currentDevice] beginGeneratingDeviceOrientationNotifications];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(orientationChanged:)
name:UIDeviceOrientationDidChangeNotification
object:[UIDevice currentDevice]];
依次调用以下方法:
- (void) orientationChanged:(NSNotification *)note {
...
}
我想做的是将上述方法与我完全从单独部分发布的初始代码块分开调用。这可能吗?如果可以,怎么做?