2011-07-01 14 views
1

は、私は、次のコードを持っている:TTTableItem画像サイズ

TTTableItem *item = 
     [TTTableSubtitleItem 
     itemWithText:group.name 
     subtitle:[NSString stringWithFormat:@"%@ members %@ topics ", group.members_count , group.topics_count] 
     imageURL:imageURL 
     URL:@"" 
     ]; 

はimageURLにに設定された画像のサイズを変更する方法はありますか?

答えて

1

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]; 
    } 
}