A member of Apple's Objective-C framework Cocoa.
I am developing an application in which I want to use an NSDictionary. Can anyone please send me a sample …
iphone objective-c nsdictionary nsmutabledictionaryi have a NSDictionary which looks like: { "Item1" = 2.4; "Item2" = 5.5; "Item3" = 15.6; } To use this NSDictionary Items in a Table View i …
objective-c nsarray nsdictionaryI have an array of dictionaries. I want to filter the array based on a key. I tried this: NSPredicate *…
objective-c cocoa nsarray nsdictionary nspredicateI just need to ask something as follow. Suppose I am having a dictionary. NSMutableDictionary *xyz=[[NSMutableDictionary alloc] init]; [xyz …
ios objective-c nsdictionaryhow can I check if this exists?: [[dataArray objectAtIndex:indexPathSet.row] valueForKey:@"SetEntries"] I want to know whether this key …
ios objective-c iphone nsdictionaryI am not sure if I am using the dictionary or the data object or both incorrectly. I m trying …
ios swift nsdictionary nsdataI'm trying to add multiple objects to NSDictionary, like var myDict: NSDictionary = [["fname": "abc", "lname": "def"], ["fname": "ghi", "lname": "jkl"], ...] …
ios json swift nsdictionary key-valueI am new to Core Data. I have noticed that collection types are not available as attribute types and would …
objective-c ios core-data nsarray nsdictionaryWhere JSON_CATEGORY_DATA_URL_STRING is my feed URL, which returns fine as: [ { "group":"For Sale", "code":"SSSS" }, { "group":"…
ios objective-c nsarray nsdictionary sbjsonI have an NSDictionary (stored in a plist) that I'm basically using as an associative array (strings as keys and …
ios objective-c cocoa nsdictionary