自定义 UITableViewCell 的布局

自定义TableViewCell 布局有很多种,个人建议简单的cell使用第一种,复杂的用第二种。除此之外还有很多种实现方法,但是从代码重用的角度来说不是很好,没有写的必要。

    言归正传:

    1) 程序默认带有一个 ImageView , 一个textLabel, 一个DetailLabel, 和一个accessoryView,如果不需要过多的其它控件,可以创建一个UITableViewCell的子类。在  -(void)layoutSubviews  方法中改变这些子视图的Frame即可,比如:

01 #import "MyCell.h"
02  
03 @implementation MyCell
04  
05 /*这里定义Frame*/
06  
07 -(void)layoutSubviews{
08      
09     self.imageView.frame =CGRectMake(0.0f, 0.0f, 50.0f, 50.0f);
10      
11     self.textLabel.frame =CGRectMake(60.0f, 0.0f, 100.0f, 20.0f);
12      
13     self.detailTextLabel.frame =CGRectMake(60.0f, 25.0f, 150.0f, 20.0f);
14      
15     self.accessoryView.frame =CGRectMake(280.0f, 10.0f, 30.0f, 30.0f);
16      
17 }


2) 如果cell内容过于复杂,可以自己定义属性,比如:

1 #import <UIKit/UIKit.h>
2  
3 @interface MyCell : UITableViewCell
4  
5 @property (nonatomic,retain) UILabel *nameLabel;
6 @property (nonatomic,retain) UILabel *sexLabel;
7 @property (nonatomic,retain) UILabel *ageLabel;
8  
9 @end
view source
print ?
01 #import "MyCell.h"
02  
03 @implementation MyCell
04  
05 @synthesize nameLabel,sexLabel,ageLabel;
06  
07 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
08 {
09     self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
10     if (self) {
11         // Initialization code
12         nameLabel =[[UILabel alloc]initWithFrame:CGRectMake(0.0f, 0.0f, 50.0f, 50.0f)];
13         sexLabel =[[UILabel alloc]initWithFrame:CGRectMake(60.0f, 0.0f, 100.0f, 20.0f)];
14         ageLabel = [[UILabel alloc]initWithFrame:CGRectMake(60.0f, 25.0f, 150.0f, 20.0f)];
15     }
16     return self;
17 }
18 - (void)dealloc
19 {
20     self.nameLabel =nil;
21     self.sexLabel =nil;
22     self.ageLabel =nil;
23     [super dealloc];
24 }

你可能感兴趣的:(UITableViewCell,布局,UITableView)