我是新手MonoTouch
,因此MonoTouch.Dialog
。使用 Elements API,我创建了一个带有两个按钮的简单视图,“Accounts”和“Contacts”。
public override bool FinishedLaunching (UIApplication app, NSDictionary options)
{
_window = new UIWindow(UIScreen.MainScreen.Bounds);
_rootElement = new RootElement("Sample")
{
new Section()
{
new StringElement ("Accounts", delegate { ElementTapped(); }),
},
new Section()
{
new StringElement ("Contacts", delegate { ElementTapped(); }),
}
};
_rootVC = new DialogViewController(_rootElement);
_nav = new UINavigationController(_rootVC);
_window.RootViewController = _nav;
_window.MakeKeyAndVisible ();
return true;
}
一旦我点击任一按钮,我想调出一个新的视图来搜索。我知道我必须创建一个新DialogViewController
的并将其EnableSearch
设置为 true,但是如何NavigationController
从delegate
?
谢谢你。