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)的主要内容,如果未能解决你的问题,请参考以下文章