0
A
回答
0
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
NSString *CellIdentifier = [NSString stringWithFormat:@"S%1dR%1d",indexPath.section,indexPath.row];
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil)
{
cell = [[UITableViewCell alloc]initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
cell.selectionStyle = UITableViewCellSelectionStyleNone;
self.imgThings = [[UIImageView alloc] init];
// imgThings.backgroundColor= [UIColor magentaColor];
[self.imgThings setImage: [UIImage imageNamed:@"image.png"]];
self.imgThings.center = CGPointMake(cell.contentView.bounds.size.width/2,cell.contentView.bounds.size.height/2);
[cell.contentView addSubview:self.imgThings];
}
return cell;
}
上面是隻有一個圖像的簡單示例,您還可以通過更改圖像的名稱將其設置爲多個圖像。
相關問題
- 1. 連續旋轉不集中
- 2. 非連續UISlider iOS
- 3. 在iOS中解析連續的JSON流
- 4. textViewShouldBeginEditing在iOS 7中連續調用
- 5. 在續集中使用基本連接
- 6. 在SQL中選擇連續事件集
- 7. 在iOS上合併多個UIImages
- 8. 的iOS GoogleAnalytic連續生產
- 9. 連續的UIAlertControllers - IOS - Swift
- 10. iOS - 適合連續按鈕
- 11. MySQL集團按連續行
- 12. 續集多個連接?
- 13. 續集親不會連接
- 14. Gitlab連續集成流星
- 15. 連續的字段集合
- 16. IOS BLE連接連續斷開
- 17. 從SQL中收集連續信息
- 18. Scala:集合中的連續id
- 19. 從數據集中更新連續行
- 20. iOS上的持續集成xcode
- 21. iOS - 與Jenkins/Fastlane持續集成
- 22. iOS和網絡上的持續集成?
- 23. 如何在ios中連續調用Web服務
- 24. 如何在覈心圖形中連續繪製曲線ios
- 25. 在iOS中創建聊天功能 - 通過連續請求
- 26. 如何在ios中執行連續方向檢測?
- 27. 我如何在iOS 5中連續拍攝兩張照片5
- 28. 如何在iOS中連續顯示警報視圖
- 29. 在iOS中獲取連續滾動事件Chrome瀏覽器
- 30. 在iOS中與服務器保持持續連接
嗨,謝謝你的片段。這幾乎是我需要的。但在我的例子中,我有多個圖像不僅在一行中。例如,這是一行:(UIImage)| (UIImage)| (UIImage) - (DetailEnclosure);就像一個有一行和多列的表一樣。 – Bene 2013-03-12 13:45:40
@Bene如果有超過3張圖片怎麼辦? – Anupdas 2013-03-12 15:52:33
@Bene如果您的目標是iOS 6.0及以上版本,現在可能是學習自動佈局的好時機。您可以將規則設置爲具有最小填充和規則,以使所有imageView具有與單元格的contentView相同的高度和寬度。 – Anupdas 2013-03-12 15:55:21