Skip to content

Instantly share code, notes, and snippets.

@isoiphone
Created August 4, 2015 21:22
Show Gist options
  • Save isoiphone/1c3154917d3c76835281 to your computer and use it in GitHub Desktop.
Save isoiphone/1c3154917d3c76835281 to your computer and use it in GitHub Desktop.
wtf UITableViewCell
// vertically expand label so hanging letters such as 'g' don't get clipped
override func layoutSubviews() {
super.layoutSubviews()
if let textLabel = textLabel {
textLabel.frame = CGRectInset(textLabel.frame, 0, -10)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment