In C++ EventType.find(1)->second
can be used to find the value for the key 1.
I am new to Objective C.I have implemented CFDictionary
to add
The documentation for CFMutableDictionary
says:
The basic interface for managing dictionaries is provided by
CFDictionary
Reference.
... which leads you to CFDictionaryGetValue().
Please do not edit your posts to ask another unrelated question.
Anyway: You are using the wrong format specifier: %s
is used to print C strings. You can use Objective-C's %@
format specifier to print the object's description.
If you want to use pure Core Foundation you can use CFShow(object)
;