Storyboardを使わずにStoryboardにあるViewControllerに遷移する
3783 ワード
備忘。
参照元こちら。
http://nw.tsuda.ac.jp/class2013/3proj/changeViewController/changeViewController.html
navigationControllerを使った場合を想定して書いています。
// ストーリーボードを指定する
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
// 遷移先のViewControllerをStoryBoardをもとに作成
HogeViewController *hogeViewController = [storyboard instantiateViewControllerWithIdentifier:@"ここにStoryboardのStoryboard IDに書いた名前を書く"];
// 画面をPUSHで遷移させる
[self.navigationController pushViewController:hogeViewController animated:YES];
TableViewControllerで、セルのアクセサリをタッチしたら、hogeViewControllerに遷移する例
// アクセサリーが押された時に遷移する
- (void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath{
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
HogeViewController *hogeViewController = [storyboard instantiateViewControllerWithIdentifier:@"hogeHoge"];
// プロパティに値(indexPath)も渡しちゃう
hogeViewController.indexPath = indexPath;
// Pushで遷移
[self.navigationController pushViewController:editWineViewController animated:YES];
}
Author And Source
この問題について(Storyboardを使わずにStoryboardにあるViewControllerに遷移する), 我々は、より多くの情報をここで見つけました https://qiita.com/eggmobile/items/31589b69191626b5e4eb著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .