UI022---xib自定义UITableView

本文介绍如何通过XIB文件和自定义类实现UItableViewcell,以构建一个简单的团购应用界面布局,包括数据模型、主控制器和自定义cell的展示方式。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

使用xib自定义UItableviewcell实现一个简单的团购应用界面布局


一、效果
这里写图片描述

三、代码示例

1.没有使用配套的类,而是直接使用xib文件控件tag值操作

数据模型部分:

YYtg.h文件

 1 //
 2 //  YYtg.h
 3 //  01-团购数据显示(没有配套的类)
 4 //
 5 //  Created by apple on 14-5-29.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #import <Foundation/Foundation.h>
10 #import "Global.h"
11 
12 @interface YYtg : NSObject
13 @property(nonatomic,copy)NSString *buyCount;
14 @property(nonatomic,copy)NSString *icon;
15 @property(nonatomic,copy)NSString *price;
16 @property(nonatomic,copy)NSString *title;
17 YYinitH(tg)
18 @end

复制代码

YYtg.m文件
复制代码

 1 //
 2 //  YYtg.m
 3 //  01-团购数据显示(没有配套的类)
 4 //
 5 //  Created by apple on 14-5-29.
 6 //  Copyright (c) 2014年 itcase. All rights reserved.
 7 //
 8 
 9 #import "YYtg.h"
10 
11 @implementation YYtg
12 YYinitM(tg)
13 @end

复制代码

主控制器

YYViewController.m文件
复制代码

 1 //
 2 //  ViewController.m
 3 //  01-团购数据显示(没有配套的类)
 4 //
 5 //  Created by apple on 15-5-29.
 6 //  Copyright (c) 2015年 CB. All rights reserved.
 7 //
 8 
 9 #import "ViewController.h"
10 #import "CBTg.h"
11 
12 @interface ViewController ()<UITableViewDataSource>
13 @property(nonatomic,strong)NSArray *tg;
14 @property (strong, nonatomic) IBOutlet UITableView *tableview;
15 
16 @end
17 
18 @implementation CBViewController
19 
20 - (void)viewDidLoad
21 {
22     [super viewDidLoad];
23     self.tableview.rowHeight=100;
24     
25 }
26 
27 #pragma mark-  懒加载
28 -(NSArray *)tg
29 {
30     if (_tg==nil) {
31         NSString *fullpath=[[NSBundle mainBundle]pathForResource:@"tgs.plist" ofType:nil];
32         NSArray *temparray=[NSArray arrayWithContentsOfFile:fullpath];
33         
34         NSMutableArray *arrayM=[NSMutableArray arrayWithCapacity:temparray.count];
35         for (NSDictionary *dict in temparray) {
36             YYtg *tg=[YYtg tgWithDict:dict];
37             [arrayM addObject:tg];
38         }
39         _tg=[arrayM mutableCopy];
40     }
41     return _tg;
42 }
43 
44 #pragma mark-数据显示
45 -(NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
46 {
47     return 1;
48 }
49 -(NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
50 {
51     return self.tg.count;
52 }
53 -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
54 {
55     //读取xib中的数据
56 //    NSArray *arrayM=[[NSBundle mainBundle]loadNibNamed:@"tgcell" owner:nil options:nil];
57 //    UITableViewCell *cell=[arrayM firstObject];
58     static NSString *identifier=@"tg";
59     UITableViewCell *cell=[tableView dequeueReusableCellWithIdentifier:identifier];
60     if (cell==nil) {
61        // cell=[[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
62         cell= [[[NSBundle mainBundle]loadNibNamed:@"tgcell" owner:nil options:nil] firstObject];
63     }
64     
65     YYtg *tg=self.tg[indexPath.row];
66     //设置数据
67     //使用tag
68     UIImageView *imgv=(UIImageView *)[cell viewWithTag:1];
69     imgv.image=[UIImage imageNamed:tg.icon];
70     UILabel *buyCount=(UILabel *)[cell viewWithTag:4];
71     buyCount.text=[NSString stringWithFormat:@"已有%@人购买",tg.buyCount];
72     UILabel *title=(UILabel *)[cell viewWithTag:2];
73     title.text=tg.title;
74     UILabel *price=(UILabel *)[cell viewWithTag:3];
75     price.text=[NSString stringWithFormat:@"$%@",tg.price];
76     
77     
78     //返回cell
79     return cell;
80 }
81 
82 //隐藏状态栏
83 -(BOOL)prefersStatusBarHidden
84 {
85     return YES;
86 }
87 @end

使用xib自定义的UItableviewcell

这里写图片描述

代码分析:

上面的代码通过使用xib文件中各个控件的tag值,完成对每个部分数据的赋值和刷新。但是,作为主控制器,它应该知道xib文件中各个控件的tag值,它知道的是不是太多了呢?

为了解决上面的问题,我们可以为自定义的cell设置一个配套的类,让这个类来操作这个xib,对外提供接口,至于内部的数据处理,外界不需要关心,也不用关心。

改造后的代码如下:

2.使用xib和对应的类完成自定义cell的数据展示

新建一个类,用来管理对应的xib文件

注意类的继承类,并把该类和xib文件进行关联

这里写图片描述

CBTgcell.h文件代码:

1 //
2 // CBTgcell.h
3 // 团购(使用xib和类完成数据展示)
4 //
5 // Created by apple on 15-5-29.
6 // Copyright (c) 2015年 CB. All rights reserved.
7 //
8
9 #import

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值