1

iOS5中新的应用风格,你必须在UIWindow上设置RootViewController,这让我很困惑。

我从这里下载了最新的 MonoTouch.Dialog 库:

https://github.com/migueldeicaza/MonoTouch.Dialog

但是当我尝试在模拟器上编译和运行包含的“示例”项目时,它崩溃并返回以下错误:

错误:应用程序在应用程序启动结束时应该有一个根视图控制器

然后我在 GitHub 上打开了一个问题:

https://github.com/migueldeicaza/MonoTouch.Dialog/issues/65

但米格尔回答我说:

如果你使用iOS5新风格的应用程序,你必须在UIWindow上设置RootViewController。这是一个新的 iOS 5 功能部分,用于将 UIViewController 包含到位。

我试图将示例应用程序的导航控制器分配给窗口根视图控制器,但没有任何效果。仍然得到同样的错误。这是包含的示例应用程序的 FinishedLaunching 方法:

public override bool FinishedLaunching (UIApplication app, NSDictionary options)
    {
        var Last = new DateTime (2010, 10, 7);
        Console.WriteLine (Last);

        var p = Path.GetFullPath ("background.png");
        window.AddSubview (navigation.View);

         //ADDING THE Navigation Controller as RootViewController
        window.RootViewController = navigation; //THIS LINE WAS ADDED BY ME

        var menu = new RootElement ("Demos"){
            new Section ("Element API"){
                new StringElement ("iPhone Settings Sample", DemoElementApi),
                new StringElement ("Dynamically load data", DemoDynamic),
                new StringElement ("Add/Remove demo", DemoAddRemove),
                new StringElement ("Assorted cells", DemoDate),
                new StyledStringElement ("Styled Elements", DemoStyled) { BackgroundUri = new Uri ("file://" + p) },
                new StringElement ("Load More Sample", DemoLoadMore),
                new StringElement ("Row Editing Support", DemoEditing),
                new StringElement ("Advanced Editing Support", DemoAdvancedEditing),
                new StringElement ("Owner Drawn Element", DemoOwnerDrawnElement),
            },
            new Section ("Container features"){
                new StringElement ("Pull to Refresh", DemoRefresh),
                new StringElement ("Headers and Footers", DemoHeadersFooters),
                new StringElement ("Root Style", DemoContainerStyle),
                new StringElement ("Index sample", DemoIndex),
            },
            new Section ("Auto-mapped", footer){
                new StringElement ("Reflection API", DemoReflectionApi)
            },
        };

        var dv = new DialogViewController (menu) {
            Autorotate = true
        };
        navigation.PushViewController (dv, true);               

        window.MakeKeyAndVisible ();

        return true;
    }

我添加的唯一代码行是注释中指出的那一行,但是这个添加似乎并没有解决错误。有什么我想念的吗?

提前致谢!

4

3 回答 3

5

我已经更新了 MonoTouch.Dialog 中的示例,以展示如何将视图控制器添加到 iOS 4.x 系统和 5.x 系统,并且应该可以解决这个问题。

简短的版本是window.AddSubview(navigation.View)是iOS 4.3的做事方式,新版本需要设置window.RootViewController属性,像这样:

        if (UIDevice.CurrentDevice.CheckSystemVersion (5, 0))
            window.RootViewController = navigation; 
        else
            window.AddSubview (navigation.View);            
于 2011-11-08T19:11:58.160 回答
1

好的,看来 Miguel 上传了新版本的库。他用“更新到 MonoDevelop 2.8”评论了这个提交。

https://github.com/migueldeicaza/MonoTouch.Dialog/commit/25974c5c28d31c022d232a449ef9fbc766506701

现在示例工作正常(您仍然需要在 Info.plist 文件中手动将 MainWindow 设置为主界面以使错误消失。上次还不够。)。

似乎问题出在项目设置中,而不是在 rootviewcontroller 中。即使最终没有它也能正常工作(也许更专家的人可以解释这个奇怪的事情)。不幸的是,MonoDevelop 的错误信息具有误导性!

于 2011-11-08T11:29:25.303 回答
0

尝试删除window.AddSubview(navigation.View);线。

于 2011-11-07T16:38:59.793 回答