How to retrieve the values for the particular key from CFMutableDictionary

后端 未结 2 1602
[愿得一人]
[愿得一人] 2021-01-26 06:27

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

2条回答
  •  渐次进展
    2021-01-26 07:05

    The documentation for CFMutableDictionary says:

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

    ... which leads you to CFDictionaryGetValue().

提交回复
热议问题