Skip to content

iOS 8 issue with Section Footer and Root.Reload() #227

@bdn-mca

Description

@bdn-mca

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.

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions