indexPath.row に問題があります。この変数にアクセスしようとすると、アプリがクラッシュし、コンソールにエラーが表示されません:(
コードはこれです:
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
// Navigation logic may go here. Create and push another view controller.
NSLog(@"%@", indexPath); //works fine
NSLog(@"%@", indexPath.row); //crash
}
ModalViewController内で使用しています。