Skip to content

Instantly share code, notes, and snippets.

@quocnb
Created February 21, 2019 05:28
Show Gist options
  • Save quocnb/e17bb369da503f6b6ec58fedae358a56 to your computer and use it in GitHub Desktop.
Save quocnb/e17bb369da503f6b6ec58fedae358a56 to your computer and use it in GitHub Desktop.
import UIKit
class MarginLabel: UILabel {
var insets = UIEdgeInsets(top: 0, left: 5, bottom: 0, right: 5)
override func drawText(in rect: CGRect) {
super.drawText(in: rect.inset(by: insets))
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment