0
這是我用來設置我的其中一個按鈕的圖像的當前代碼。該按鈕被設置爲故事板的出口。無法爲我的圓形按鈕添加陰影 - Swift iOS Dev
userPictureButton.sd_setBackgroundImage(with: URL(string: currentUserData.photoURL), for: .normal)
userPictureButton.layer.cornerRadius = userPictureButton.frame.size.width/2
userPictureButton.clipsToBounds = true
每個向該按鈕添加陰影的方法似乎在剪輯到邊界= true時失敗。當我有剪輯限制,我可以看到一個影子,但不再有一個圓形的按鈕。
任何人都知道解決方案嗎?
謝謝。