我有一個UIViewController
,我想將背景設置爲一個圖像。我想在代碼不是IB
,所以我可以隨後更改圖像。如何設置UIViewController背景圖像來填充屏幕
在閱讀了關於.ScaleAspectFill
的所有提示後,我的圖片仍然無法調整以適應屏幕。任何人都可以提供任何建議嗎?我的代碼是:
override func viewDidLoad() {
super.viewDidLoad()
// set the inital backgroundColor
self.view.backgroundColor = UIColor(patternImage: gameBackgroundOne!)
self.view.contentMode = UIViewContentMode.ScaleAspectFill //doesnt seem to do anything!
self.view.clipsToBounds = true // is this needed?
self.view.center = view.center // is this needed?
}
你在哪裏設置背景圖片? – Lukas
背景圖像設置在別處。該部分工作正常,因爲圖像的某些部分顯示,但它沒有正確填寫 – richc