diff options
author | Jay Freeman (saurik) <saurik@saurik.com> | 2017-03-10 21:46:41 -0800 |
---|---|---|
committer | Jay Freeman (saurik) <saurik@saurik.com> | 2017-03-10 21:46:41 -0800 |
commit | 2db33ea12fcfa87654ecf0ba54db21786f1fe821 (patch) | |
tree | e9a4d0a0aa132ad14e9d7cd4e57bddfe97852a1c /CyteKit | |
parent | b06c11a9a99fab3c65a793cc2deb020a3e762311 (diff) |
Transfer shared content code to CyteTableViewCell.
Diffstat (limited to 'CyteKit')
-rw-r--r-- | CyteKit/TableViewCell.mm | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/CyteKit/TableViewCell.mm b/CyteKit/TableViewCell.mm index 827440b..1b9152e 100644 --- a/CyteKit/TableViewCell.mm +++ b/CyteKit/TableViewCell.mm @@ -56,6 +56,19 @@ bool highlighted_; } +- (instancetype) initWithFrame:(CGRect)frame reuseIdentifier:(NSString *)reuseIdentifier { + if ((self = [super initWithFrame:frame reuseIdentifier:reuseIdentifier]) != nil) { + UIView *content([self contentView]); + CGRect bounds([content bounds]); + + self.content = [[[CyteTableViewCellContentView alloc] initWithFrame:bounds] autorelease]; + [self.content setAutoresizingMask:(UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleHeight)]; + [content addSubview:self.content]; + + [self.content setDelegate:(id<CyteTableViewCellDelegate>)self]; + } return self; +} + - (void) _updateHighlightColorsForView:(UIView *)view highlighted:(BOOL)highlighted { if (view == (UIView *) content_) highlighted_ = highlighted; |