重写表格

运行之后的样式:↓


重写表格_第1张图片
运行之后.png

创建Plist文件

重写表格_第2张图片
创建Plist文件步骤1.png
重写表格_第3张图片
创建Plist文件步骤2.png

![Uploading 创建Plist文件步骤3_542747.png . . .]

AppDelegate.m


//根试图

ViewController *theVc = [[ViewController alloc]init];

UINavigationController *theNav = [[UINavigationController alloc]initWithRootViewController:theVc];

//添加标题

theVc.title = @"菜单";

self.window.rootViewController = theNav ;

创建MyTableviewCell


MyableviewCell.h

@property(nonatomic,strong)UIImageView *theImage ;

@property(nonatomic,strong)UILabel *theL1,*theL2,*theL3,*theL4 ;


MyableviewCell.m

//懒加载模式  使用下划线

-(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 ;

}

*主视图中导入#import "MyTableViewCell.h"头文件


@interface ViewController (){

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];

return cell ;

}

你可能感兴趣的:(重写表格)