我想知道如何將UIImage居中到UIButton。我使用的UIButton的setImage方法放置的UIImage ..如何將UIImage居中到UIButton?
4
A
回答
14
可以使用contentMode屬性:
button.imageView.contentMode = UIViewContentModeCenter;
2
有時你可能有錯誤的內容一致。確保它們都與中心:
button.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;
button.contentVerticalAlignment = UIControlContentVerticalAlignmentCenter;
4
設置內容模式,即使與
相關問題
- 1. 保存UIImage從UIbutton到對象UIImage複製到其他UIButton
- 2. 如何將UIButton添加到UIButton中
- 3. 粘UIButton到UIImageView的UIImage
- 4. 如何在Swift中居中放置UIButton?
- 5. UIButton - UIImage反彈
- 6. 如何佈置UILabel和UIButton並居中?
- 7. 將UIImage和UILabel居中在一起
- 8. 如何將UIImage和UILabel水平居中在一起?
- 9. UIImage的居中調整
- 10. 將UIImage放入UIButton的簡單方法
- 11. 如何將UIImage插入到UITableViewCell中
- 12. 如何將UIImage「繪製」到視圖中?
- 13. UIButton的文本不居中
- 14. uiimage和uibutton釋放問題?
- 15. UIButton position UIImage zoom on UIScrollView
- 16. 如何將div從上到下居中?
- 17. 如何在UIImageView中居中縮放(旋轉)UIImage
- 18. 如何在UIButton中選擇狀態和標題文本的UIImage
- 19. 如何將UIButton作爲一個標題居中在UITableView中的一個部分?
- 20. 如何在UITableViewCell中垂直居中對齊UIButton? (Objective C)
- 21. 如何將UIImage保存到文件?
- 22. 如何將UIImage或CGImage附加到AVAssetWriter?
- 23. 如何將UIImage發佈到Facebook
- 24. 將UIImage繪製到CurrentContext中
- 25. 如何將腳本居中?
- 26. 如何將此表居中?
- 27. 如何將文字居中?
- 28. 如何將閃屏居中
- 29. 如何將多個重疊的UIImage合併到Swift中的一個UIImage中?
- 30. 如何將觀察者添加到UIButton?
之前,請從UIButton的文本,UIButton的顯示在右對齊圖像 – 2015-02-19 22:28:29