你好,我想把UIButton
標題標籤做成一個圓圈。所以我這樣做了。UIButton titleLabel作爲圓圈
btnAttachments.setTitle(strcount, for: .normal)
btnAttachments.setTitleColor(UIColor.white, for: .normal)
btnAttachments.titleLabel?.backgroundColor=com.getRedcolor()
btnAttachments.titleLabel?.font=UIFont.init(name: "Bariol", size: 15)
btnAttachments.titleLabel?.layer.cornerRadius=(btnAttachments.titleLabel?.frame.width)!/2
但它並沒有使它成爲一個圓圈。它看起來像這樣的代碼doen't在titleLabel
UPDATE影響
請幫我 感謝
我想你忘記了btnAttachments.titleLabel.clipsToBounds = YES –
我沒有和仍然相同: ( 這是爲什麼? – user1960169
我認爲btnAttachments.titleLabel?.frame.width = 0.我嘗試btnAttachments.titleLabel?.layer.cornerRadius = 10.它的工作 –