Skip to content

Instantly share code, notes, and snippets.

@cokecoffe
Created July 10, 2013 07:25
Show Gist options
  • Save cokecoffe/5964137 to your computer and use it in GitHub Desktop.
Save cokecoffe/5964137 to your computer and use it in GitHub Desktop.
remove border of tableviewcell (group style)
//去掉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