内部でデリゲートのnumberOfRowsInSectionメソッドを呼び出していますが、Bad Access Errorが発生します。UITableViewheightForRowAtIndexPath
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
...
NSLog(@"number of rows in section: %i", [tableView numberOfRowsInSection:[indexPath section]]);
...
}
ここで何が悪いのか誰か教えてもらえますか?