最近、xcode 4.3.2 に更新したときに、新しい問題が多数発生しました。アプリ ビュー コントローラーの m ファイルで、「ルート句であるためスーパーを使用できません」というエラーが表示され続けます。
私は何時間もインターネットを見てきましたので、助けていただければ幸いです。
ありがとう
- (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