Skip to content

Instantly share code, notes, and snippets.

@cute
Created September 21, 2013 14:34
Show Gist options
  • Select an option

  • Save cute/6651220 to your computer and use it in GitHub Desktop.

Select an option

Save cute/6651220 to your computer and use it in GitHub Desktop.
fix UITableView separator on iOS 7
if ([tableView respondsToSelector:@selector(setSeparatorInset:)]) {
[tableView setSeparatorInset:UIEdgeInsetsZero];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment