ユーザーがそのボタンをクリックすると、プッシュしたい別のxibファイルがあります。現在、このビューにはナビゲーションコントローラーがないため、次のように動的に作成します。
myVC *viewController = [[myVC alloc] init];
UINavigationController *controller = [[UINavigationController alloc]
initWithRootViewController:viewController];
[self presentModalViewController: controller animated: YES];
しかし、これはモーダルです。どうすれば myV を右から押すことができますか?
ありがとう。