自定义容器ViewController Xamarin / Monotouch示例

时间:2013-07-26 10:32:03

标签: uiviewcontroller xamarin.ios custom-controls xamarin uisegmentedcontrol

有没有人有一个简单的C#示例,显示如何根据Apple文档使用自定义容器ViewControllers和Xamarin / Monotouch -

http://developer.apple.com/library/ios/#featuredarticles/ViewControllerPGforiPhoneOS/CreatingCustomContainerViewControllers/CreatingCustomContainerViewControllers.html

1 个答案:

答案 0 :(得分:2)

除了发布问题之外,思考对于离开并创建示例更有帮助。

https://github.com/wickedw/ViewControllerContainer/blob/master/README.md

自述摘录

我在一个项目中得到了一个点,我希望根据用户选择显示3个不同的“屏幕”信息。

TabBarController不合适,因为GUI位于UINavigationController层次结构中。然而,UISegmentedControl很好地适应了设计。

我已将我的视图完全编码为单独的ViewControllers(并非全部使用相同的创建模式,一些使用Monotouch Dialog,其他使用Nib文件,其他使用Programmatic)。

因此,我不想重写现有代码以使用控制多个视图的Single ViewController。

我还以为是时候看“Custom ViewController Containers”了,因为它们似乎非常适合这种情况。