我使用以下命令設置了視圖的背景顏色如何在swift中使用UIColor(patternImage:UIImage(命名爲:「myimage.jpg」))設置背景時的背景顏色或圖像
self.view.backgroundColor = UIColor(patternImage: UIImage(named:"myimage.jpg"))
我想再次獲得圖像名稱「myimage.jpg」。爲此,我曾嘗試使用下面的命令
self.view.backgroundColor?.cgColor.pattern
它返回
Optional(<CGPattern 0x600000364e00>)
我也看了Detecting if UIColor was created with colorWithPatternImage
獲取到的圖案圖像,但它是沒有多大幫助的
你想從背景顏色檢索圖像名稱? –
@PuneetSharma yes –
@PuneetSharma請參閱我的更新後的問題 –