Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
谁能告诉我如何在 Titanium 中创建一个 NSDictionary 类型的对象。进行了很多搜索,但找不到创建键值对的任何正确解决方案。
谢谢,
由于 Titanium 是用 Javascript 编写的,因此您可以传递可以具有键值对的 JSON 对象...
var dictionary = { key: 'value', key2: 'value2' };
如果你想专门使用 NSDictionary,那么你必须走 iOS 模块的路径。