-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot Access A Disposed Object #83
Comments
Any updates for this issue? @LuckyDucko |
Did you find any workaround? |
@raselldev @vatttsall did you figure out what is/was wrong? I'm facing the same issue in my project. |
@LuckyDucko I am experiencing the same issue. In my case, if I have a popup open, and I show a spinner (using Acr.UserDialogs), after closing the popup the app crashes when opening the keyboard with the following stacktrace: System.ObjectDisposedException: Cannot access a disposed object. |
@doriangh I had the same issue and adding |
Thank you for creating Mopups,
Currently i got some error like this:
Terminating app due to uncaught exception 'System.ObjectDisposedException', reason: 'Cannot access a disposed object.
Object name: 'Mopups.Platforms.iOS.PopupWindow'. (System.ObjectDisposedException)
at ObjCRuntime.ThrowHelper.ThrowObjectDisposedException(Object o)
at Foundation.NSObject.get_SuperHandle()
at UIKit.UIView.get_Bounds()
at BigTed.ProgressHUD.PositionHUD(NSNotification notification)
at Foundation.InternalNSNotificationHandler.Post(NSNotification s)
My shell using SimpleShell: https://github.com/RadekVyM
Let me explain our flow,
try { Application.Current.MainPage = Handler.MauiContext.Services.GetRequiredService<FlyoutShell>(); } catch(Exception ex) { System.Diagnostics.Debug.WriteLine(ex.Message); }
public FlyoutShell()
{
InitializeComponent();
The text was updated successfully, but these errors were encountered: