摘要:
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 阅读全文