总结 ﹣ UITableViewCell

注 : 文章不断更新,转载文章请加上作者

UITableView中显示的每一个单元都是一个UITableViewCell对象

每个UITableView中,都有三个属性
也就是内部都又3个控件UIImageView 两个UILabel

@property (nonatomic, readonly, retain) UIImageView *imageView ;   
@property (nonatomic, readonly, retain) UILabel     *textLabel ;   
@property (nonatomic, readonly, retain) UILabel     *detailTextLabel ; 



你可能感兴趣的:(UITableViewCell)