Skip to content

Instantly share code, notes, and snippets.

@jlcampana
Created August 29, 2013 08:54
Show Gist options
  • Save jlcampana/6375769 to your computer and use it in GitHub Desktop.
Save jlcampana/6375769 to your computer and use it in GitHub Desktop.
Problemas con el desplazamiento de la linea de separación en celdas en iOS7
//Set the separator line on left=0
+ (void) setCellInsetsForVersion7:(UITableViewCell *)cell
{
if([cell respondsToSelector:@selector(setSeparatorInset:)])
{
[cell setSeparatorInset:UIEdgeInsetsZero];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment