如果方向是横向的话,我希望我的视图控制器发布使用NSNotificationCenter的通知。我现在正在这样做:
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
return YES;
if (interfaceOrientation == UIInterfaceOrientationLandscapeLeft || interfaceOrientation == UIInterfaceOrientationLandscapeRight) {
[[NSNotificationCenter defaultCenter] postNotificationName:@"change" object:self];
}
}
我似乎没有在我的其他文件中得到回复。我做错了什么?
答案 0 :(得分:1)
在您发送通知之前,您将返回YES。永远不会被召唤。