当我执行以下操作时,我的项目在设备(ios 8.1)上非常一致地崩溃:
让MvxDialogViewController包含2个元素InputElement以及需要在下一个屏幕上进行选择的任何元素(作为示例DateElement)
Root = new RootElement("The Dialog")
{
new Section("Section1")
{
new EntryElement("Value"),
},
new Section("Section2")
{
new DateElement("Date", DateTime.Today),
},
};
首先将焦点设置为EntryElement
单击DateElemnt以使屏幕更改
点击" GoBack"有一个迷恋。没有错误。只有整个应用程序存在。
我按原样拿了N-23的例子,它有完全相同的问题。 为什么会这样?在模拟器中工作正常,但在设备上无效。
谢谢
标记