1

ナビゲーションバーとテーブルがあるという点でUIViewControllerがあります。次に、テーブル行を選択して、このビューから別のビューに移動します。

どうやってやるの?

4

2 に答える 2

6

まず、ファイルとグループのセクションを右クリックし、[新しいファイル]オプションをクリックして、新しいUIViewControllerをアプリケーションに追加し、SecondViewControllerという名前を付けます。

SecondViewControllerの作成中に、[ユーザーインターフェイスにXIBを使用する]オプションを選択して、必ずXIBを追加してください。

ボタンクリックで新しいビューをプッシュし、FirstViewControllerにボタンを追加し、そのボタンのTouchUpInsideイベントに次のコードを追加するとします。

 SecondViewController *secondView=[[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil];
 [self.navigationController pushViewController:secondView animated:YES];
 [secondView release];

ARCを使用している場合は、を削除し[secondView release];ます。

さらにサポートが必要な場合はお知らせください。

お役に立てれば。

于 2012-05-08T16:27:30.787 に答える
1
 FileName *file=[[FileName alloc] initWithNibName:@"FileName.xib" bundle:nil];
 [self.navigationController pushViewController:file animated:YES];
 [file release];
于 2012-05-08T13:25:49.097 に答える