didSelectRowAtIndexPath: メソッドを呼び出して、セル値を別のセルに渡します。最初に tableViewCell セルの任意の行をクリックすると、データを別の Controller View に渡すことができません。2 回目以降は、値を正常に渡すことができます。
- -(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath )indexPath { self.updateNoification.nEntity = (NotificationEntity ) [self.array objectAtIndex:indexPath.row];
[self.updateNoification.nEntity getId]);
self.updateNoification.title = @「変更」;
[self.updateNoification updateForReadViewValue];
[self.navigationController pushViewController:self.updateNoification animation:YES]; }