http://bugzilla.novell.com/show_bug.cgi?id=590240
http://bugzilla.novell.com/show_bug.cgi?id=590240#c4 Geoff Norton <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |NEEDINFO InfoProvider| |[email protected] --- Comment #4 from Geoff Norton <[email protected]> 2010-03-23 04:08:12 UTC --- Jon, I swiped about 30 times without a crash on our latest release, are you still seeing this on the latest version? One point of note, your finishedlaunching method looks like: public override bool FinishedLaunching (UIApplication app, NSDictionary options) { GestureViewController controller = new GestureViewController (); UIView vView = controller.View; vView.Frame = UIScreen.MainScreen.ApplicationFrame; window.Add (vView); window.MakeKeyAndVisible (); return true; } The View inside a Controller does not keep a ref to the controller, so upon exiting this function the controller is free to be colelcted, you should keep a reference to it somewhere. -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
