我想要更改UITableViewCell(cell.imageView ...)中默認imageView的位置。是否有可能這樣做,還是我必須創建一個新的?更改imageView在UITableViewCell中的位置
1
A
回答
0
可以以這種方式添加新的圖像視:
let iconImageView = UIImageView()
iconImageView.frame = CGRectMake(10, 10, 50, 50)
iconImageView.image = UIImage(named: "image_name")
// you have to add the imageview to the content view of the cell
contentView.addSubview(iconImageView)
相關問題
- 1. 更改imageview的位置
- 2. 如何更改android中imageview的位置?
- 3. 更改Android中ImageView位置的問題
- 4. 如何更改UiTableViewCell中的ImageView?
- 5. Android - 在運行時更改ImageView位置
- 6. 更改imageView的UITableViewCell的邊界
- 7. 圖標更改UITableViewCell的選擇位置
- 8. Soft Key Board更改ImageView的位置
- 9. Java Android動態更改ImageView的位置
- 10. UILabel在UITableviewcell中不改變的位置
- 11. 在OS 3.0中更改UITableViewCell中左側UIImageView的位置
- 12. ImageView在重新使用RecyclerView時更改ConstraintLayout中的位置
- 13. 動態更改imageView中的位圖,android
- 14. 更改自定義UITableViewCell中的UILabel的位置和大小
- 15. UITableViewCell子類中的標籤更改位置
- 16. 無法更改UITableviewCell子類中的子視圖位置
- 17. UITableViewCell的位置
- 18. ImageView的位置
- 19. UITableViewCell imageView
- 20. ImageView在另一個視圖在RelativeLayout中更改後重置位置
- 21. 更改的位置,$位置
- 22. 更改職位的ImageView通過onClickListener
- 23. 在Imageview中更改圖像
- 24. 在imageview中更改圖像
- 25. 嵌入在UITableViewCell中的UICollectionViewCell在重新出現時更改滾動位置
- 26. 無法更改UITableViewCell的子視圖的位置
- 27. 更改自定義UITableVIewCell的UILabel的位置
- 28. Swift:無法更改imageView框架,imageView位於故事板中
- 29. LinearLayout中的Android ImageView位置
- 30. 位置更改的Android位置更新
我想這樣做是定製的UITableViewCell的最佳途徑。 – Sebastian
好的。我在UITableViewCell子類中創建了一個imageView。我如何將它添加到自定義的UITableViewCell? – paro