mirror of
https://github.com/zhigang1992/RETableViewManager.git
synced 2026-06-11 16:30:26 +08:00
Add cellDidLoad method
This commit is contained in:
@@ -14,16 +14,12 @@
|
||||
+ (CGFloat)heightWithItem:(NSObject *)item tableViewManager:(RETableViewManager *)tableViewManager
|
||||
{
|
||||
return 306;
|
||||
}
|
||||
}g
|
||||
|
||||
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
|
||||
- (void)cellDidLoad
|
||||
{
|
||||
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
|
||||
if (self) {
|
||||
_pictureView = [[UIImageView alloc] initWithFrame:CGRectMake(7, 0, 306, 306)];
|
||||
[self addSubview:_pictureView];
|
||||
}
|
||||
return self;
|
||||
_pictureView = [[UIImageView alloc] initWithFrame:CGRectMake(7, 0, 306, 306)];
|
||||
[self addSubview:_pictureView];
|
||||
}
|
||||
|
||||
- (void)cellWillAppear
|
||||
|
||||
Reference in New Issue
Block a user