码迷,mamicode.com
首页 > 移动开发 > 详细

IOS UITableview 的Cell 封装

时间:2015-08-18 11:53:01      阅读:141      评论:0      收藏:0      [点我收藏+]

标签:

感觉不错的代码。收藏下。

#import "GDBookTableViewCell.h"
#import "GDBook.h"

@interface GDBookTableViewCell ()

@property (weak, nonatomic) IBOutlet UIImageView *iconLabel;
@property (weak, nonatomic) IBOutlet UILabel *authorLabel;
@property (weak, nonatomic) IBOutlet UILabel *booknameLabel;
@property (weak, nonatomic) IBOutlet UILabel *progressLabel;

@end

@implementation GDBookTableViewCell

+(instancetype)cellWithTableView:(UITableView *)tableView
{
    static NSString *ID = @"bookCell";
    
    GDBookTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:ID];
    
    if (cell == nil) {
        cell = [[[NSBundle mainBundle] loadNibNamed:@"GDBookTableViewCell" owner:nil options:nil] lastObject];
    }
    
    return cell;
}

-(void)setBook:(GDBook *)book
{
    _book = book;
    
    self.booknameLabel.text = book.name;
}

@end

调用的地方:

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    GDBookTableViewCell *cell = [GDBookTableViewCell cellWithTableView:tableView];
    
    // 设置数据
    GDBook *book = self.books[indexPath.row];
    cell.book = book;
    
    return cell;
}

然后在
setBook里实现对控件的绑定。

版权声明:本文为博主原创文章,未经博主允许不得转载。

IOS UITableview 的Cell 封装

标签:

原文地址:http://blog.csdn.net/zz_mm/article/details/47749783

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!