Hello, > > MonoTouch.Foundation.MonoTouchException: Objective-C exception thrown. > Name: NSInvalidArgumentException Reason: -[NSCFCharacterSet > willPresentAlertView:]: unrecognized selector sent to instance 0xf47bf0 > at MonoTouch.UIKit.UIApplication.Main (System.String[] args, System.String > principalClassName, System.String delegateClassName) [0x00000] in :0 > at KleverLogic.FlashValet.iPhone.Valet.Application.Main (System.String[] > args) [0x000ed] in > /xsl-home/kleverlogic/FlashValet/Mobile/iPhone/Valet/Main.cs:60 >
This means that your object was garbage collected. You need to keep a reference to this object, in this case, it is likely an UIAlertView.
_______________________________________________ MonoTouch mailing list [email protected] http://lists.ximian.com/mailman/listinfo/monotouch
