1
我有一個包含文本和圖像的按鈕,但我希望圖像上有一個圓角半徑。當我嘗試將角半徑應用到按鈕時,它適用於我認爲正確的整個按鈕。我怎樣才能將角落半徑設置爲圖像?Swift - 設置嵌套在UIButton中的圖像的圓角半徑
這裏是我的代碼:
let titleButton = UIButton()
titleButton.frame = CGRect(x: 0, y: 0, width: 100, height: 40)
titleButton.setTitle("display name", for: .normal)
titleButton.setImage(#imageLiteral(resourceName: "imgName"), for: .normal)
titleButton.layer.masksToBounds = true
titleButton.layer.cornerRadius = titleButton.frame.width/2
self.navigationItem.titleView = titleButton