A member of Apple's Objective-C framework Cocoa.
I've got an NSDictionary that was initialized with a plist that, among other things, contained count followed by 32 and I …
iphone nsdictionaryI store names as keys and scores as values into an NSDictionary for saving in NSUserDefaults. I then want to …
objective-c cocoa-touch sorting nsdictionaryI would like to use a method (writeToFile) only available for NSDictionary to a NSMutableDictionary object. So, how do I …
iphone ios ios4 nsdictionary nsmutabledictionaryI'm trying to understand why I have a compilation error: Type '[String, AnyObject?]' does not conform to protocol …
dictionary swift compiler-errors nsdictionary literalsI want to save an NSMutableArray or NSDictionary as a permanent file. Then, I would like to reopen the file …
ios cocoa-touch nsmutablearray nsdictionary nsdataI want to use valueForKeyPath on my NSDictionary, but the problem is that one of the keys is a string …
iphone objective-c nsdictionary key-value-codingWhat is the difference between a dictionary and an array, especially when working with PLIST files? What are the advantages …
objective-c ios nsarray plist nsdictionaryI have a json object: @interface Order : NSObject @property (nonatomic, retain) NSString *OrderId; @property (nonatomic, retain) NSString *Title; @property (nonatomic, …
ios objective-c json nsdictionary nsjsonserializationThere are limitations with writing NSDictionaries into files in swift. Based on what I have learned from api docs and …
swift dictionary nsdictionary plistI have the following dictionary: NSDictionary* jsonDict = @{ @"firstName": txtFirstName.text, @"lastName": txtLastName.text, @"email": txtEmailAddress.text, @"password": txtPassword.text, @"imageUrl": …
ios nsdictionary