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