我有兩個控制器,First- and SecondViewController
。我想分享一些FirstViewController的方法在我的SecondViewController中使用它們。初始化UIViewController時如何傳遞一個參數?
這是我如何FirstViewController創建SecondViewController:
sms = [[SecondViewController alloc] init];
UINavigationController *navController = [[UINavigationController alloc]
initWithRootViewController:sms];
[self presentModalViewController:navController animated:YES];
我以爲經過FirstViewController當前實例延伸UIViewController
的SecondViewController的。默認情況下,調用SecondViewController的initWithNibName方法。
如何在objective-c中實現這一點?
你問如何將FirstViewController傳入init方法中的SecondViewController而不使用initWithNibName初始值設定項? – 2011-04-30 15:15:37
我不會調用initWithNibName mehtod,它似乎被自動調用,但是我很欣賞任何有關如何將第一個傳遞給第二個視圖控制器的建議 – 2011-04-30 15:28:52