码迷,mamicode.com
首页 > 其他好文 > 详细

进击的UI------------------- Plist&自定义Cell

时间:2015-11-21 18:31:25      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:

1.plist
NSString *filePath = [[NSBundle mainBundle]pathForResource:@"name" ofType:@"plist"];
NSDictionary *dict = [NSDictionary dictionaryWithContentsOfFile:filePath];
2.tableView的自定义cell
1??:cell.m
// 自定义cell的初始化方法
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{
    if (self = [super initWithStyle:style reuseIdentifier:reuseIdentifier]) {
        [self p_setupView];
    }
    return self;
}
- (void)p_setupView{
    self.myImage = [[UIImageView alloc]initWithFrame:CGRectMake(10, 10, 40, 40)];
//    self.myImage.backgroundColor = [UIColor brownColor];
    // 自定义cell把控件添加到cell的contentView上面
    [self.contentView addSubview:_myImage];
    self.nameLable = [[UILabel alloc]initWithFrame:CGRectMake(CGRectGetMaxX(self.myImage.frame) + 10, CGRectGetMinY(self.myImage.frame), CGRectGetWidth(self.contentView.frame) - CGRectGetWidth(self.myImage.frame) - 30,CGRectGetHeight(self.myImage.frame))];
    self.nameLable.backgroundColor = [UIColor brownColor];
    [self.contentView addSubview:_nameLable];
}
// 当bounds发生改变 走一个方法
- (void)layoutSubviews{
    self.nameLable.frame = CGRectMake(CGRectGetMaxX(self.myImage.frame) + 10, CGRectGetMinY(self.myImage.frame), CGRectGetWidth(self.contentView.frame) - CGRectGetWidth(self.myImage.frame) - 30, CGRectGetHeight(self.myImage.frame));
}
2??:controller.m
- (void)viewDidLoad {
    [super viewDidLoad];
    // 1 先注册
    [self.tableView registerClass:[MyCell class] forCellReuseIdentifier:@"cell"];
    self.tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    // 用自定义cell
    MyCell *cell = [tableView dequeueReusableCellWithIdentifier:@"cell" forIndexPath:indexPath];
    cell.myImage.image = [UIImage imageNamed:@"1.png"];
    cell.nameLable.text = @"宋慧乔";
    cell.nameLable.font = [UIFont systemFontOfSize:20];
    return cell;
}
3.cell - model
1??:技术分享
技术分享技术分享
2??:技术分享
3??:技术分享
4??:技术分享
6??:技术分享
 

进击的UI------------------- Plist&自定义Cell

标签:

原文地址:http://www.cnblogs.com/sharkHZ/p/4984108.html

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