2 つのバーがあるアプリがあります。タブ .xib の 1 つに含まれている、ユーザーがセルの 1 つを選択すると、選択に関する情報を含むUITableView
別の (.xib ファイル) を表示したいと考えています。UIViewcontroller
今、私はこれを試しました
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath
*)indexPath {
NextViewController *nextController = [[NextViewController alloc] initWithNibName:@"NextView" bundle:nil];
[self.navigationController pushViewController:nextController animated:YES]; [nextController changeProductText:[arryData objectAtIndex:indexPath.row]];
}
コンソールにはエラーがまったく表示されていません。
問題に見えるのは?
ありがとう!