Top "Nsdictionary" questions

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

Searching NSArray of NSDictionary objects

I've contacts array where each contact is a dictionary. Each contact has a key "contact_type" which is an NSNumber. …

ios nsarray nsdictionary nspredicate
What is an NSCFDictionary?

I'm getting an NSCFDictionary returned to me and I can't figure out how to use it. I know it's of …

objective-c cocoa nsdictionary core-foundation
"Mutating method sent to immutable object" despite object being NSMutableDictionary

I'm using NSMutableDictionary and hit this error: 'NSInternalInconsistencyException', reason: '-[__NSCFDictionary removeObjectForKey:]: mutating method sent to immutable object' Here's the …

objective-c ios cocoa-touch nsdictionary nsmutabledictionary
converting NSDictionary object to NSData object and vice-versa

I have to convert an NSDictionary object into NSData and further I have to get the same NSDictionary out of …

ios objective-c nsdictionary nsdata
Store NSDictionary in keychain

It is possible to store a NSDictionary in the iPhone keychain, using KeychainItemWrapper (or without)? If it's not possible, have …

ios objective-c iphone nsdictionary keychain
Storing NSManagedObject in a dictionary (NSDictionary)

I have a custom class, which is a subclass of NSManagedObject. I would like to store it in a dictionary, …

iphone cocoa-touch ios nsdictionary nsmanagedobject
NSDictionary: method only defined for abstract class. My app crashed

My app crashed after I called addImageToQueue. I added initWithObjects: forKeys: count: but it doesn't helped me. Terminating app due …

ios crash nsdictionary
What is the Java equivalent of Objective-C's NSDictionary?

What is the closest implementation of Objective-C's NSDictionary in Java? To me, it looks like HashMap<String, Object>, …

java objective-c hashmap nsdictionary
Retrieving values from json using objective-c

I am currently trying to work with json and objective-c however having a bit of difficulty. The following is the …

objective-c json api nsdictionary cpanel
Deep combine NSDictionaries

I need to merge two NSDictionarys into one provided that if there are dictionaries within the dictionaries, they are also …

objective-c merge nsdictionary