最近当我更新到 xcode 4.3.2 时,我遇到了许多新问题。在我的应用程序视图控制器 m 文件中,我不断收到错误消息“不能使用 super,因为它是根子句。”
我已经在互联网上看了几个小时,所以任何帮助将不胜感激。
谢谢
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
}
- (void)viewDidUnload
{
[super viewDidUnload];
// Release any retained subviews of the main view.
}
- (BOOL)shouldAutorotateToInterfaceOrientation: (UIInterfaceOrientation)interfaceOrientation
{
return (interfaceOrientation != UIInterfaceOrientationPortraitUpsideDown);
}
@end