我在内部调用委托的numberOfRowsInSection
方法,但它给了我一个错误的访问错误:UITableView
heightForRowAtIndexPath
- (CGFloat) tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath{
...
NSLog(@"number of rows in section: %i", [tableView numberOfRowsInSection:[indexPath section]]);
...
}
谁能告诉我这里有什么问题?