私のアプリは ios6.1 で正常に動作していました。iOS7シミュレーターを試しましたが、次の部分が機能しません:
EditingCell *cell = (EditingCell*) [[textField superview] superview];
NSIndexPath *indexPath = [self.tableView indexPathForCell:cell];
NSLog(@"the section is %d and row is %d", indexPath.section, indexPath.row);
NSUInteger section = [indexPath section];
NSUInteger row = [indexPath row];
NSString *rowKey = [[keysForRows objectAtIndex: section] objectAtIndex: row];
それは常に来ます:
the section is 0 and row is 0
別のセクション/行が選択されていますが。これがios7で機能しない理由を誰かが知っていますか?