摘要: 1 @interface CustomCell : UITableViewCell2 3 @property (nonatomic, retain) IBOutlet UIImageView *tripPhoto;4 @property (nonatomic, retain) IBOutlet UILabel *tripName;5 6 @end1 #import "CustomCell.h"2 3 @implementation CustomCell4 5 @synthesize tripPhoto, tripName;6 7 @end同时定义4种类型的自定义单元格的.x 阅读全文
posted @ 2013-02-20 08:58 diablo大王 阅读(3084) 评论(0) 推荐(0) 编辑