自定义TableViewCell

     自定义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
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 }
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值