Oc plist文件重写单元格

首先创建Plist文件.

屏幕快照 2017-09-03 20.38.25.png

单元格MyTableViewCell.h


#import <UIKit/UIKit.h>

@interface MyTableViewCell : UITableViewCell
@property(nonatomic,strong)UIImageView *theImage ;
@property(nonatomic,strong)UILabel *theL1,*theL2,*theL3,*theL4,*theL5 ;

@end

单元格MyTableViewCell.m

#import "MyTableViewCell.h"

@implementation MyTableViewCell
//懒加载模式  使用下划线
-(UIImageView *)theImage
{
    if (!_theImage) {
        _theImage = [[UIImageView alloc]initWithFrame:CGRectMake(5, 5, 80, 80)];
        [_theImage.layer setCornerRadius:80/2];
        _theImage.layer.masksToBounds = YES ;

        //添加到视图
        [self addSubview:self.theImage];
    }
    return _theImage ;
}
//UILab懒加载
-(UILabel*)theL1
{
    if (!_theL1) {
        _theL1 = [[UILabel alloc]initWithFrame:CGRectMake(85, 5, 160, 30)];

        //添加到视图
        [self addSubview:self.theL1];
    }
    return _theL1 ;
}
-(UILabel*)theL2
{
    if (!_theL2) {
        _theL2 = [[UILabel alloc]initWithFrame:CGRectMake(85, 25, 160, 30)];

        //添加到视图
        [self addSubview:self.theL2];
    }
    return _theL2 ;
}
-(UILabel*)theL3
{
    if (!_theL3) {
        _theL3 = [[UILabel alloc]initWithFrame:CGRectMake(85,45, 160, 30)];

        //添加到视图
        [self addSubview:self.theL3];
    }
    return _theL3 ;
}
-(UILabel*)theL4
{
    if (!_theL4) {
        _theL4 = [[UILabel alloc]initWithFrame:CGRectMake(255, 5, 160, 30)];

        //添加到视图
        [self addSubview:self.theL4];
    }
    return _theL4 ;
}
-(UILabel*)theL5
{
    if (!_theL5) {
        _theL5 = [[UILabel alloc]initWithFrame:CGRectMake(305, 45, 160, 30)];

        //添加到视图
        [self addSubview:self.theL5];
    }
    return _theL5 ;

}
@end

ViewController.m

#import "ViewController.h"
#import "MyTableViewCell.h"
@interface ViewController ()<UITableViewDelegate,UITableViewDataSource>
{
    NSDictionary *theDic;
}
@property(nonatomic,strong)UITableView *theTable ;
@end

@implementation ViewController

-(UITableView *)theTable
{
    if (!_theTable)
    {
        _theTable  = [[UITableView alloc]initWithFrame:CGRectMake(0, 20, self.view.frame.size.width, self.view.frame.size.height-20) style:UITableViewStylePlain];

        _theTable.delegate = self ;
        _theTable.dataSource = self ;
        _theTable.rowHeight = 80 ;
    }
    return _theTable;
}
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
    [self.view addSubview:self.theTable];
    NSString *path = [[NSBundle mainBundle]pathForResource:@"My list" ofType:@"plist"];
    theDic = [NSDictionary dictionaryWithContentsOfFile:path];

}
#pragma -
#pragma mark -UITableViewDataSource
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
    return theDic.allKeys.count;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    MyTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"celled"];

    if (!cell) {
        cell = [[MyTableViewCell alloc]initWithStyle:UITableViewCellStyleValue1 reuseIdentifier:@"celled"];
    }
    NSString *key = [theDic.allKeys objectAtIndex:indexPath.row];
    NSArray *arr = [theDic objectForKey:key];
    cell.theImage.image = [UIImage imageNamed:arr[0]];
    cell.theL1.text = key ;
    cell.theL2.text = arr[1];
    cell.theL3.text = arr[2];
    cell.theL4.text = arr[3];
    cell.theL5.text = arr[4];
        return cell ;

}


@end
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值