My project is crashing very consistently on the device with (ios 8.1) when I do the following:
have MvxDialogViewController with 2 elements InputElement and any element that requires selection on the next screen (as an example DateElement)
Root = new RootElement("The Dialog") { new Section("Section1") { new EntryElement("Value"), }, new Section("Section2") { new DateElement("Date", DateTime.Today), }, };
first set focus to EntryElement
click DateElemnt so that the screen will change
Once I click "GoBack" there is a crush. No errors. Just the whole app exists.
I took N-23 example as is and it has exactly the same problem. Why is it happening? Works fine in simulator but not on a device.
Thank you
Mark