-
Notifications
You must be signed in to change notification settings - Fork 207
Open
Description
Hi,
I like using MonoTouch.Dialog in my apps, and it has been great until one issue appeared in iOS 8.
I have a few places in my app where i have Boolean Element in a Section, and when the user switches it, the Footer of the Section changes. Up to now, I've been doing it like this:
...
InvokeOnMainThread(() =>
{
if (quickScanSection != null)
{
quickScanSection.Footer = quickScanElement.Value ? DefaultsFooter : string.Empty;
this.Root.Reload(quickScanSection, UITableViewRowAnimation.Fade);
}
});
...
However, since iOS 8, the application hangs on Root.Reload(). It doesn't crash or throw an exception, it just hangs, both on device and simulator.
Strange thing is that I have Root.Reload() on other places, where I'm changing values, titles etc. and it's working as expected, it only hangs if I try to change the section footer, and reload then.
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels