Created
August 29, 2013 08:54
-
-
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
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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