The cfmutabledictionary tag has no wiki summary.
0
votes
1answer
45 views
Please help to adapt this sample code
I would like to adapt the sample code below to store a uint value rather than a CGPoint value in myValues dictionary. I'm not really familiar how to work with CoreFoundation types, so need help here ...
0
votes
2answers
326 views
Autorelease CFMutableDictionary
How do I autorelease a CFMutableDictionary?
I'm creating it like this:
self.mappingByMediatedObject = CFDictionaryCreateMutable(NULL, 0, &kCFTypeDictionaryKeyCallBacks, ...
3
votes
1answer
514 views
NSMutableDictionary vs CFMutableDictionary
I have a requirement for a dictionary with keys that are not copied. This has lead me on a merry dance and I've ended up at the door of CFMutableDictionary.
I am trying to understand the extent to ...
0
votes
2answers
130 views
Could not remove value from a CFMutableDictionary
I was trying to remove a key value pair from the dictionary with CFDictionaryRemoveValue.
But its not removing the keys and values.Its printng me the key-value pairs after removing too.
struct ...