How to retrieve the values for the particular key from CFMutableDictionary

╄→гoц情女王★ 提交于 2019-12-02 22:19:15

问题


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 addvalue onto it.But how do i

retreive and view the values of the particular key.

EDITED:

CFNumberRef tId = CFNumberCreate(NULL,kCFNumberShortType,&st);
CFDictionarySetValue(cfdict,tId,st);
NSLog(@"The value is:%s",(CFDictionaryGetValue(cfdict,tId)));

Its running without error but i could not get the output.


回答1:


The documentation for CFMutableDictionary says:

The basic interface for managing dictionaries is provided by CFDictionary Reference.

... which leads you to CFDictionaryGetValue().




回答2:


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);



来源:https://stackoverflow.com/questions/6006545/how-to-retrieve-the-values-for-the-particular-key-from-cfmutabledictionary

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!