mvvmcross示例N-23破碎

时间:2014-11-05 13:19:09

标签: c# mvvmcross monotouch.dialog ios8.1

当我执行以下操作时,我的项目在设备(ios 8.1)上非常一致地崩溃:

  1. 让MvxDialogViewController包含2个元素InputElement以及需要在下一个屏幕上进行选择的任何元素(作为示例DateElement)

        Root = new RootElement("The Dialog")
            {
                new Section("Section1")
                    {
    
                        new EntryElement("Value"),
    
                    },
                new Section("Section2")
                    {
                        new DateElement("Date", DateTime.Today),
    
                    },
    
            };
    
  2. 首先将焦点设置为EntryElement

  3. 单击DateElemnt以使屏幕更改

  4. 点击" GoBack"有一个迷恋。没有错误。只有整个应用程序存在。

  5. 我按原样拿了N-23的例子,它有完全相同的问题。 为什么会这样?在模拟器中工作正常,但在设备上无效。

    谢谢

    标记

0 个答案:

没有答案