TTTableSubtitleItemCellのカスタムサブクラスを作成し、イメージビューのフレームを調整する必要があります。
TableCustomSubtitleItemという名前のサブクラスTTTableSubtitleItemCellクラスを作成し、自分のクラスに新しいレイアウトサブビュー機能を追加します。データソースで
///////////////////////////////////////////////////////////////////////////////////////////////////
- (void)layoutSubviews {
[super layoutSubviews];
if (_imageView2) {
_imageView2.frame = CGRectMake(0, 0, 100, 100);
}
}
を、あなたの代わりにデフォルトTTTableSubtitleItemCellの新しいTTTableItemCellを使用する必要があります。
を
///////////////////////////////////////////////////////////////////////////////////////////////////
- (Class)tableView:(UITableView*)tableView cellClassForObject:(id) object {
if ([object isKindOfClass:[TTTableSubtitleItem class]]) {
return [TableCustomSubtitleItem class];
} else {
return [super tableView:tableView cellClassForObject:object];
}
}