ios手动添加数组字典(NSMutableDictionary)

Posted zzqqrr

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ios手动添加数组字典(NSMutableDictionary)相关的知识,希望对你有一定的参考价值。

@property (nonatomic,strong) NSArray *imageData;//定义一个数组

-(NSArray *)imageDate
{
if(_imageDate==nil)
{
NSMutableDictionary *image1=[NSMutableDictionary dictionary];
image1["icon"]=@"a";
image1["title"]=@"测试一";

NSMutableDictionary *image2=[NSMutableDictionary dictionary];
image2["icon"]=@"a";
image2["title"]=@"测试二";

NSMutableDictionary *image3=[NSMutableDictionary dictionary];
image3["icon"]=@"a";
image3["title"]=@"测试三";
_imageData=@[image1,image2,image3];
}
return _imageData;
}
//读取数据
NSDictionary *imageDict=self.imageData[0];
self.icon.text=imageDict[@"icon"];
self.title.text=imageDict[@"title"];

 

 

 


以上是关于ios手动添加数组字典(NSMutableDictionary)的主要内容,如果未能解决你的问题,请参考以下文章

iOS入门数组字典的遍历EnumerateObjectsUsingBlock 记录

在iOS9 swift中的字典类型中添加数组作为键和值

如何在ios中将字典的双引号数组解析为json?

如何在iOS(目标c)中发送带有字典和数组的JSON?

如何在 Swift 中将数组添加到我的 JSON 字典

如何将 NSString 值设置为 NSMutable 字典?