Created
November 7, 2012 07:13
-
-
Save deholic/4029964 to your computer and use it in GitHub Desktop.
use transparent background UITableView on iOS 6
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
table = [[UITableView alloc] initWithFrame:frame style:UITableViewStyleGrouped]; | |
// UITableView setBackgroundColor method is deprecated! | |
// use setBackgroundView! | |
[table setBackgroundView:nil]; | |
[table setBackgroundColor:[UIColor clearColor]]; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment