如何在 Objective C 中获得字典列表?
这是 python 中的一个示例,
temy_dict_list = []
my_dict_list.append({'text':'first value', 'value':'number 1'})
my_dict_list.append({'text':'second value', 'value':'number 2'})
my_dict_list.append({'text':'third value', 'value':'number 3'})
我想在 Objective-C 中实现与此相同的东西!
我怎样才能实现这个?我想要一个字典列表!
here is a an example in python
temy_dict_list = []
my_dict_list.append({'text':'first value', 'value':'number 1'})
my_dict_list.append({'text':'second value', 'value':'number 2'})
my_dict_list.append({'text':'third value', 'value':'number 3'})
I want to implement something the same as this in objective-c !
how can i implement this ? i want a list of dictionaries!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不知道Python(你的代码对我来说似乎是错误的),但我猜你想要一个字典数组,它被翻译为拥有一个
NSArray
(NSMutableArray 在这种情况下)它保存一个或多个
NSDictionary
对象。您可以创建一个 NSMutableArray 实例并向其添加一些对象。
我们使用类方法
dictionaryWithObjectAndKeys
创建一个NSDictionary
;我们传递字典将保存的以 nil 结尾的值和键列表。I don't know python (and your code seems wrong to me), but I guess you want to have an array of dictionaries, which is translated to having an
NSArray
(NSMutableArray
in this case) which holds one ore moreNSDictionary
objects.You can create an
NSMutableArray
instance and add add to it some objects.We create an
NSDictionary
with the class methoddictionaryWithObjectAndKeys
; we pass a nil-terminated list of values and keys that the dictionary will hold.