私は新しいxcode 4.5を使用しています.View Controllerに次のコード行があります:
DiscoverCell* cell=[table dequeueReusableCellWithIdentifier:@"DiscoverCell"];
if(cell==nil){
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"DiscoverCell"
owner:self
options:nil];
cell = [nib objectAtIndex:0];
}
アプリを実行すると、例外「NSInternalInconsistencyException」がキャッチされずにアプリが終了します。理由:「NIB データが無効です。」LoadNib ラインで、それは何ですか? このxcodeはアップルのゴミですか?