昨天在折騰UITableView,最終想實現的效果是在UITableViewCell裏添加UIScrollView, spa
效果圖以下: 設計
初步設計是用代碼生成UITableView,因此沒有用到IB來建立View等控件。 圖片
幾經波折,在自定義TableViewCell裏成功添加了UIScrollView,而scrollview裏面動態添加了N張遠程圖片。 it
可是Cell的高度始終都是原始的44像素,因爲Cell裏面的圖片都是有固定大小,因此在 table
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath 搜索
{
return 128.0;
} scroll
self.PhotoDetailTable = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, screenFrame.size.width, screenFrame.size.height-93) style:UITableViewStylePlain]; im
self.PhotoDetailTable.dataSource = self; img
self.PhotoDetailTable.delegate = self; tab
OK,運行後,Cell高度正常顯示爲128