私は自分のクラスで自分のtableViewのデータソースとデリゲートになるために呼び出されたクラスを使用していNSObject
ます。NavigationController を継承しない場合、MasterView DetailViewController DetailViewController MyClass`でセルを選択すると?MyClass
UIViewController
MasterView
it pushes another ViewController called
. How do I push
from
私の失敗した試み:
//This will push the view but I cant return afterward.
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
[appDelegate.navigationController pushViewController:detailViewController animated:YES];
//This just does nothing
masterView = [[MasterViewController alloc] init];
[masterView.navigationController pushViewController:detailViewController animated:YES];