嗨,我现在对视图控制器的方向有疑问。以下是我的 .h 文件。
@interface IPad_HomeViewController : UIViewController <UINavigationControllerDelegate>{
UIAlertView *alertWithYesNoButtons;
}
@property (weak, nonatomic) IBOutlet UILabel *lblStatus;
@end
我在 .m 文件中实现了以下方法。
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation{
return NO;
}
然后我做了一个断点。我意识到 shouldAutorotateToInterfaceOrientation 完全没有被调用。不知道为什么它没有被调用。
请告诉我。谢谢