Created
July 10, 2013 07:25
-
-
Save cokecoffe/5964137 to your computer and use it in GitHub Desktop.
remove border of tableviewcell (group style)
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
//去掉group cell的边框 | |
UIView *tempView = [[[UIView alloc] init] autorelease]; | |
[self.photoCell setBackgroundView:tempView]; | |
[self.photoCell setBackgroundColor:[UIColor clearColor]]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment