自定cell(XIB)团购思路

本文详细介绍了如何在iOS开发中自定义cell与XIB文件的整合流程,包括解析plist文件创建model层数据、自定义cell的设计步骤、与TableView的代理方法实现,以及点击开始下载按钮的协议通知机制。

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

自定cell(XIB)团购思路

步骤一、先解析plist文件,创建model层数据。

- (instancetype)initWithDict:(NSDictionary *)dict
{
   
self = [super init];
   
if (self) {
        [
self setValuesForKeysWithDictionary:dict];
    }
   
return self;
}

+ (
instancetype)tgWithDict:(NSDictionary *)dict
{
   
return [[self alloc] initWithDict:dict];
}

+ (
NSMutableArray *)tgs
{
   
NSArray *array = [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"tgs.plist" ofType:nil]];
   
   
NSMutableArray *arrayM = [NSMutableArray array];
   
for (NSDictionary *dict in array) {
        [arrayM
addObject:[self tgWithDict:dict]];
    }
   
   
return arrayM;
}
二、自定义Cell
1 创建XIB文件,并设置控件内部细节。
2 创建一个与XIB同名的类,注意自定义的类继承自的对象,要与XIB中根对象的类保持一致。
3 重新指定XIB中的根类,打开助理编辑器辅助观察变化。
4 对需要修改属性的控件做IBOutlet连线,注意,不要与TableViewCell的已经存在的属性重名
连线控件的名称不能是:
(
1) textLabel
(
2) detailTextLabel
(
3) imageView

+ (instancetype)cellWithTableView:(UITableView *)tableView
{
   
// 1. 可重用标示符
   
static NSString *ID = @"Cell";
   
// 2. tableView查询可重用Cell
   
HMTgCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
   
   
// 3. 如果没有可重用cell
   
if (cell == nil) {
       
NSLog(@"加载XIB");
       
// XIB加载自定义视图
        cell = [[[
NSBundle mainBundle] loadNibNamed:@"HMTgCell" owner:nil options:nil] lastObject];
    }
   
   
return cell;
}

- (
void)setTg:(HMTg *)tg
{
   
// setter方法中,第一句要赋值,否则要在其他方法中使用模型,将无法访问到
   
_tg = tg;

   
self.titleLabel.text = tg.title;
   
self.iconView.image = [UIImage imageNamed:tg.icon];
   
self.priceLabel.text = tg.price;
   
self.buyCountLabel.text = tg.buyCount;
}

#pragma mark - 模板提供的方法
/**
 
初始化方法
 
 
使用代码创建Cell的时候会被调用,如果使用XIB或者Storyboard,此方法不会被调用
 */

- (
id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
   
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
   
if (self) {
       
NSLog(@"%s", __func__);
    }
   
return self;
}

/**
 
XIB被加载之后,会自动被调用,如果使用纯代码,不会被执行
 */

- (
void)awakeFromNib
{
   
NSLog(@"%s", __func__);
   
self.contentView.backgroundColor = [UIColor clearColor];
}

/**
 Cell
被选中或者取消选中是都会被调用
 
 
如果是自定义Cell控件,所有的子控件都应该添加到contentView
 */

- (
void)setSelected:(BOOL)selected animated:(BOOL)animated
{
    [
super setSelected:selected animated:animated];

   
if (selected) {
       
self.contentView.backgroundColor = [UIColor redColor];
    }
else {
       
self.contentView.backgroundColor = [UIColor greenColor];
    }
}
三、在控制器实现UITableView的代理方法
#pragma mark - 数据源方法
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
   
return self.tgs.count;
}

- (
UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
   
// 1. 创建cell
   
HMTgCell *cell = [HMTgCell cellWithTableView:tableView];
   
   
// 2. 通过数据模型,设置Cell内容,可以让视图控制器不需要了解cell内部的实现细节
    cell.
tg = self.tgs[indexPath.row];
   
   
return cell;
}
四、自定义点击开始下载XIB
+ (instancetype)footerView
{
   
return [[[NSBundle mainBundle] loadNibNamed:@"HMTgFooterView" owner:nil options:nil] lastObject];
}

- (
IBAction)loadMore
{
   
NSLog(@"加载更多");
   
// 1. 隐藏按钮
   
self.loadMoreButton.hidden = YES;
   
// 2. 显示提示视图
   
self.tipsView.hidden = NO;

   
// 3.1 判断代理是否实现了协议方法
   
if ([self.delegate respondsToSelector:@selector(tgFooterViewDidDownloadButtonClick:)]) {
        [
self.delegate tgFooterViewDidDownloadButtonClick:self];
    }
}
/** 视图控制器刷新完成调用方法 */
在XIB添加View和Button,加载完数据之后,View隐藏,Button显示。
- (
void)endRefresh
{
   
// 4. 加载完成数据
   
self.loadMoreButton.hidden = NO;
   
self.tipsView.hidden = YES;
}
五、自定义协议,当点击开始下载按钮,通知控制器
@protocol HMTgFooterViewDelegate <NSObject>

@optional
/** 视图的下载按钮被点击 */
- (
void)tgFooterViewDidDownloadButtonClick:(HMTgFooterView *)footerView;

@end

- (void)tgFooterViewDidDownloadButtonClick:(HMTgFooterView *)footerView
{
   
// 模拟取网络上获取数据加载数据
   
NSLog(@"努力加载数据中....");
   
   
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(2.0 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
       
// 获得网络数据之后执行的操作
       
       
// 向数组中添加数据,模拟网络加载完成之后的效果
       
NSDictionary *dict = @{@"title": @"哈哈", @"icon": @"ad_00", @"price": @"100.2", @"buyCount": @"250"};
       
HMTg *tg = [HMTg tgWithDict:dict];
       
       
NSLog(@"加数据前 %d", self.tgs.count);
       
        [
self.tgs addObject:tg];
       
       
NSLog(@"加数据后 %d", self.tgs.count);
       
// 刷新数据
       
//    [self.tableView reloadData];
       
// 新建一个indexPath
       
NSIndexPath *path = [NSIndexPath indexPathForRow:(self.tgs.count - 1) inSection:0];
        [
self.tableView insertRowsAtIndexPaths:@[path] withRowAnimation:UITableViewRowAnimationMiddle];
       
       
// 通知页脚视图调整视图显示状态
        [footerView
endRefresh];
    });
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值