plist文件的实际应用

在开发过程中测试避免不了用plist文件测试,今天就来说一下具体的应用

首先我们要写一个plist文件,里面是一个数组套字典的形式

下面要实现展示界面

我是重写的表格

.h中

@property (nonatomic,strong)UILabel *name,*price;

@property (nonatomic,strong)UILabel *lab1;

@property (nonatomic,strong)UIImageView *img;

.m

-(instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{

if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {

[self addSubview:self.name];

[self addSubview:self.price];

[self addSubview:self.img];

}

return self;

}

-(UIImageView*)img

{

if (!_img) {

_img = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, 80, 80)];

}

return _img;

}

-(UILabel*)name

{

if (!_name)

{

_name = [[UILabel alloc]initWithFrame:CGRectMake(20, 90, 200, 30)];

}

return _name;

}

-(UILabel*)price

{

if (!_price)

{

_price = [[UILabel alloc]initWithFrame:CGRectMake(100, 50, 200, 30)];

}

return _price;

}

然后是viewcontroller中的代码部分

两个代理

{UITableView *table;

NSMutableArray *marr;

int Q,W,E,T;

UILabel *lab,*lab1,*lab2,*lab3,*lab4;

UIButton *bu1,*bu2,*bu3,*bu4,*bu5,*bu6,*bu7,*bu8;

}

NSString *plistPath=[[NSBundle mainBundle]pathForResource:@"data" ofType:@"plist"];

marr=[[NSMutableArray alloc]initWithContentsOfFile:plistPath];

NSLog(@"%@",marr);

self.view.backgroundColor = [UIColor whiteColor];

table = [[UITableView alloc]initWithFrame:self.view.frame style:UITableViewStylePlain];

table.delegate = self;

table.dataSource = self;

[self.view addSubview:table];

-(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section{

return 4;

}

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{

MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"z"];

if (!cell) {

cell = [[MyTableViewCell alloc]initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:@"z"];

}

NSDictionary *dic = marr[indexPath.row];

UIImage *im = [[UIImage alloc]initWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[NSString stringWithFormat:@"%@",[dic objectForKey:@"img"]]]]];

NSLog(@"=======%@",[dic objectForKey:@"img"]);

cell.img.image = im;

cell.name.text = [dic objectForKey:@"name"];

cell.price.text = [dic objectForKey:@"price"];

if (indexPath.row == 0) {

bu1 = [[UIButton alloc]initWithFrame:CGRectMake(250, 50, 50, 30)];

[bu1 setTitle:@"-" forState:UIControlStateNormal];

[bu1 addTarget:self action:@selector(buu1:) forControlEvents:UIControlEventTouchUpInside];

bu1.tag = 10;

[bu1 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

//        bu1.tag = 100;

[cell addSubview:bu1];

lab = [[UILabel alloc]initWithFrame:CGRectMake(320, 50, 50, 30)];

lab.text = @"0";

[cell addSubview:lab];

bu2 = [[UIButton alloc]initWithFrame:CGRectMake(350, 50, 50, 30)];

[bu2 setTitle:@"+" forState:UIControlStateNormal];

bu2.tag =12;

[bu2 addTarget:self action:@selector(buu1:) forControlEvents:UIControlEventTouchUpInside];

[bu2 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

[cell addSubview:bu2];

}

else if (indexPath.row == 1)

{

bu3 = [[UIButton alloc]initWithFrame:CGRectMake(250, 50, 50, 30)];

[bu3 setTitle:@"-" forState:UIControlStateNormal];

[bu3 addTarget:self action:@selector(buu3:) forControlEvents:UIControlEventTouchUpInside];

bu3.tag = 13;

[bu3 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

//        bu3.tag = 300;

[cell addSubview:bu3];

lab1 = [[UILabel alloc]initWithFrame:CGRectMake(320, 50, 50, 30)];

lab1.text = @"0";

[cell addSubview:lab1];

bu4= [[UIButton alloc]initWithFrame:CGRectMake(350, 50, 50, 30)];

[bu4 setTitle:@"+" forState:UIControlStateNormal];

bu4.tag = 14;

[bu4 addTarget:self action:@selector(buu3:) forControlEvents:UIControlEventTouchUpInside];

[bu4 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

[cell addSubview:bu4];

}else if (indexPath.row == 2)

{

bu5 = [[UIButton alloc]initWithFrame:CGRectMake(250, 50, 50, 30)];

[bu5 setTitle:@"-" forState:UIControlStateNormal];

[bu5 addTarget:self action:@selector(buu7:) forControlEvents:UIControlEventTouchUpInside];

bu5.tag = 15;

[bu5 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

//        bu3.tag = 300;

[cell addSubview:bu5];

lab2 = [[UILabel alloc]initWithFrame:CGRectMake(320, 50, 50, 30)];

lab2.text = @"0";

[cell addSubview:lab2];

bu6= [[UIButton alloc]initWithFrame:CGRectMake(350, 50, 50, 30)];

[bu6 setTitle:@"+" forState:UIControlStateNormal];

bu6.tag = 16;

[bu6 addTarget:self action:@selector(buu7:) forControlEvents:UIControlEventTouchUpInside];

[bu6 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

[cell addSubview:bu6];

}else if (indexPath.row == 3)

{

bu7 = [[UIButton alloc]initWithFrame:CGRectMake(250, 50, 50, 30)];

[bu7 setTitle:@"-" forState:UIControlStateNormal];

[bu7 addTarget:self action:@selector(buu8:) forControlEvents:UIControlEventTouchUpInside];

bu7.tag = 17;

[bu7 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

//        bu3.tag = 300;

[cell addSubview:bu7];

lab3 = [[UILabel alloc]initWithFrame:CGRectMake(320, 50, 50, 30)];

lab3.text = @"0";

[cell addSubview:lab3];

bu8= [[UIButton alloc]initWithFrame:CGRectMake(350, 50, 50, 30)];

[bu8 setTitle:@"+" forState:UIControlStateNormal];

[bu8 addTarget:self action:@selector(buu8:) forControlEvents:UIControlEventTouchUpInside];

[bu8 setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];

bu8.tag =18;

[cell addSubview:bu8];

}

return cell;

}

-(void)buu1:(UIButton*)sender

{

if (sender.tag == 10) {

Q--;

if (Q>=0) {

lab.text=[NSString stringWithFormat:@"%d",Q];

}

}else if (sender.tag == 12)

{

Q ++;

lab.text=[NSString stringWithFormat:@"%d",Q];

}

}

-(void)buu3:(UIButton*)sender

{

if (sender.tag == 13) {

W--;

if (W>=0) {

lab1.text=[NSString stringWithFormat:@"%d",W];

}

}else if (sender.tag == 14)

{

W ++;

lab1.text=[NSString stringWithFormat:@"%d",W];

}

}

-(void)buu7:(UIButton*)sender

{

if (sender.tag == 15) {

E--;

if (E>=0) {

lab2.text=[NSString stringWithFormat:@"%d",E];

}

}else if (sender.tag == 16)

{

E ++;

lab2.text=[NSString stringWithFormat:@"%d",E];

}

}

-(void)buu8:(UIButton*)sender

{

if (sender.tag == 17) {

T--;

if (T>=0) {

lab3.text=[NSString stringWithFormat:@"%d",T];

}

}else if (sender.tag == 18)

{

T ++;

lab3.text=[NSString stringWithFormat:@"%d",T];

}

}

这就是可以用plist实现简单的点餐界面





最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 206,214评论 6 481
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 88,307评论 2 382
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 152,543评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 55,221评论 1 279
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 64,224评论 5 371
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 49,007评论 1 284
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,313评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,956评论 0 259
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,441评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,925评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,018评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,685评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,234评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,240评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,464评论 1 261
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,467评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,762评论 2 345

推荐阅读更多精彩内容