, iOS. , "" ( , / ..), , . init layoutSubviews :
- (void)layoutSubviews
{
[super layoutSubviews];
CGRect cvFrame = self.contentView.frame;
cvFrame.origin.y = 0;
cvFrame.size.height = 80;
self.contentView.frame = cvFrame;
CGRect tlFrame = self.textLabel.frame;
tlFrame.origin.y = 2;
self.textLabel.frame = tlFrame;
CGRect dtlFrame = self.detailTextLabel.frame;
dtlFrame.origin.y = 2 + tlFrame.size.height + 2;
self.detailTextLabel.frame = dtlFrame;
}
, [super layoutSubviews], . , .