Have a dedicated UIViewController for each RootElement in MonoTouch.Dialog?

后端 未结 2 618
余生分开走
余生分开走 2021-01-19 15:28

It\'s easy to create a multi-level menu structure using nested RootElements in MonoTouch.Dialog but how would you go about having a specific

2条回答
  •  悲哀的现实
    2021-01-19 15:56

    Same thing, less methods...

        var root_element = new RootElement("caption", (RootElement e) => {
            return new DialogViewController (e);
        });
    

提交回复
热议问题