Skip to content

Instantly share code, notes, and snippets.

@novinfard
Last active June 17, 2019 10:11
Show Gist options
  • Save novinfard/51df66c01838919d6ea63a9073bfb534 to your computer and use it in GitHub Desktop.
Save novinfard/51df66c01838919d6ea63a9073bfb534 to your computer and use it in GitHub Desktop.
[Set space between image and title in UIButton]
let spacing: CGFloat = 10 // the amount of spacing to appear between image and title
self.button?.imageEdgeInsets = UIEdgeInsets(top: 0, left: 0, bottom: 0, right: spacing)
self.button?.titleEdgeInsets = UIEdgeInsets(top: 0, left: spacing, bottom: 0, right: 0)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment