我怀疑Xamarin.Forms MainPage属性在内存泄漏方面。
比如说我用LoginPage启动了我的应用程序
App.cs
MainPage = new LoginPage();
成功登录后, LoginPage.cs
MainPage = new NavigationPage(new HomePage());
LoginPage实例会发生什么?在垃圾收集器收集它或它被破坏之前,它是否仍然在内存中?
答案 0 :(得分:0)
我建议在模拟器中卸载现有应用并再次重新部署应用