0
我從storyboard創建了一個標籤,現在我試圖給該標籤填充內容。我創建了一個類並嘗試了下面的兩種方法,但沒有任何工作。請幫忙。UILabel iOS中的填充Swift
override func drawTextInRect(rect: CGRect) {
super.drawTextInRect(UIEdgeInsetsInsetRect(rect, UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 0)))
}
let padding = UIEdgeInsets(top: 0, left: 10, bottom: 0, right: 10)
override func intrinsicContentSize() -> CGSize {
let superContentSize = super.intrinsicContentSize()
let width = superContentSize.width + padding.left + padding.right
let heigth = superContentSize.height + padding.top + padding.bottom
return CGSize(width: width, height: heigth)
}
我有一個tableViewCell標籤,如何申請呢? heeelp。謝謝 。 –
在uitableview的cellForRowat方法中實現相同的單元格標籤 –