Top "Nsdictionary" questions

A member of Apple's Objective-C framework Cocoa.

how to remove object from NSDictionary

Hi i am having a NSdictionary in which i am adding a array with key "countries ". Now i take the …

ios objective-c iphone nsdictionary
Get all keys of an NSDictionary as an NSArray

Is it possible to get all the keys from a specific NSDictionary as a seperate NSArray?

objective-c nsarray nsdictionary
Initializing NSDictionary

The following is in my .h file: NSDictionary *originalValues; @property (nonatomic, retain) NSDictionary *originalValues; This is the .m file to …

objective-c ios xcode nsdictionary
Replace a value in NSDictionary in iPhone

I have a array (dataArray) of NSDictionary "item". It has datas like "david" for key "name" and "85" for key "marks" …

iphone nsdictionary
get values of particular key in nsdictionary

I saved the json parsing result in a dictionary which look like: { "statusCode":"200", "body":[ { "status":"success", "remarks":null } ], "data":[ "abcd":[ { "…

iphone ios objective-c nsdictionary
Convert NSArray to NSDictionary

How can I convert an NSArray to an NSDictionary, using an int field of the array's objects as key for …

iphone objective-c nsarray nsdictionary
Serialize and Deserialize Objective-C objects into JSON

I need to serialize and deserialize objective-c objects into JSON to store in CouchDB. Do people have any example code …

objective-c json couchdb nsarray nsdictionary
NSDictionary Key For Value/Object?

Can we get the key for an object in an NSDictionary by passing a particular value or object?

objective-c cocoa-touch ios nsdictionary
How do I add object to NSMutableDictionary with key?

I have a plist. I want add the elememts from that plist to a mutable dictionary. First I check the …

ios objective-c nsdictionary nsmutabledictionary
Check if key exists in NSDictionary is null or not

I did search on how to check if NSDictionary key exists or not and came up with the solution. But …

iphone objective-c nsstring nsdictionary