これは、サブビューを作成しようとしている私のコードです...StoryBoardsでXCode4を使用しています。アプリは、EXC_BAD_ACCESSでsubViewを割り当てている2行目でクラッシュしています。vFrameには有効なコンテンツがあります。これの何が問題になっていますか?(私はストーリーボードでXCode4を使用しています、ところで)。
- (void)viewDidLoad
{
[super viewDidLoad];
CGRect vFrame = CGRectMake(60,100,200,200);
subView = [[UIView alloc] initWithFrame:vFrame];
subView.backgroundColor = [UIColor redColor];
[self.view addSubview: subView];
}
更新:subViewの定義:
@interface PreferencesViewController : UIViewController {
UIView *subView;
}
@property (nonatomic, retain) UIView *subView;
@end