https://bugzilla.novell.com/show_bug.cgi?id=668723
https://bugzilla.novell.com/show_bug.cgi?id=668723#c3 Geoff Norton <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED CC| |[email protected] Resolution| |INVALID Severity|Critical |Normal --- Comment #3 from Geoff Norton <[email protected]> 2011-02-01 20:17:10 UTC --- You are putting the adview on the AdViewController, but you are allowing the contorller to be collected: public override bool FinishedLaunching (UIApplication app, NSDictionary options) { // If you have defined a view, add it here: AdViewController adViewController = new AdViewController(); window.AddSubview (adViewController.View); window.MakeKeyAndVisible (); return true; } As soon as you return from finishedlaunching the gc is free to collect the AdViewController as nothing contains a reference to it, and as such the iAd view can also go away (on the managed proxy). Keep a reference to your controller and the crash goes away. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the QA contact for the bug. You are the assignee for the bug. _______________________________________________ mono-bugs maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-bugs
