Skip to content

Instantly share code, notes, and snippets.

@alfredcc
Last active October 19, 2015 13:43
Show Gist options
  • Save alfredcc/1ae05c6fdac76062cd89 to your computer and use it in GitHub Desktop.
Save alfredcc/1ae05c6fdac76062cd89 to your computer and use it in GitHub Desktop.
create a 1px line with Interface Builder
@IBOutlet var hairlineConstraints: Array<NSLayoutConstraint>? {
didSet {
for hairlineConstraint in hairlineConstraints! {
hairlineConstraint.constant = 1 / UIScreen.mainScreen().scale
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment