Array in Monotouch NSUserDefaults
Does anyone know how to store an array in Monotouch NSUserDefaults?
One possible method:
NSUserDefaults.StandardUserDefaults["Array"] = new NSObject();
But how do I turn an array or list into开发者_运维问答 an NSObject?
Use Monotouch.Foundation.NSArray. You will probably initialize it with static FromNSObjects().
精彩评论