Skip to content

Instantly share code, notes, and snippets.

@efremidze
Created January 31, 2017 07:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save efremidze/8af443342222832a56140760111364b8 to your computer and use it in GitHub Desktop.
Save efremidze/8af443342222832a56140760111364b8 to your computer and use it in GitHub Desktop.
import UIKit
class InsetLabel: UILabel {
var insets = UIEdgeInsets()
override var intrinsicContentSize: CGSize {
var size = super.intrinsicContentSize
size.width += insets.left + insets.right
size.height += insets.top + insets.bottom
return size
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment