Created
October 19, 2012 08:17
-
-
Save mactive/3916905 to your computer and use it in GitHub Desktop.
UITableViewCellSelectionStyleNone
This file contains 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
cell.selectionStyle = UITableViewCellSelectionStyleNone; | |
//设置了成了 StyleNone 之后 | |
cell.selectedBackgroundView = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"cell_bg_highlighted.png"]]; | |
//不起作用 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment