以下のコードを参照してください。 [self.objects count]にアクセスすると、self.objectsが存在することを証明する直前の行にこのエラーがスローされるのはなぜですか? .hファイルでios 5 - EXC_BAD_ACCESSエラー
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
// Return the number of rows in the section.
NSLog(@"HERE: %@", self.objects); //this logs the array - no error
NSLog(@"num rows: %@", [self.objects count]); //this line throws the error
return [self.objects count];
}
私はこれを持っている:
@synthesize objects = _objects;