好的,所以我正在构建与以前构建的相同的项目,但现在我想使用故事板。我不能使用 initWithNibName 因为我当然只有 1 个故事板。
这是方法
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
ViewController2 *ViewController22 = [[ViewController2 alloc] initWithNibName:@"ViewController2" bundle:nil]; // What to do instad of that nib thing?
ViewController22.pickedRoww = indexPath.row;
[[self navigationController] pushViewController:ViewController22 animated:YES];
}