Skip to content

Crashing/freezing on iOS 15 and greater (open issue from Xamarin) #49

@alexmartinezm

Description

@alexmartinezm

Open issue: [Bug] [iOS] Freezing/App Crash during Navigation - new in iOS 15

Workaround:

  • Download the package and add it to your solution
  • Modify the TopTabbedRenderer with the following lines
        protected override void Dispose(bool disposing)
        {
            // Avoid disposing on iOS 15 due to open issue on GitHub: https://github.com/xamarin/Xamarin.Forms/issues/14783
            if (UIDevice.CurrentDevice.CheckSystemVersion(15, 0))
                return;

            [...]
        }

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions