-
-
Save flashlib/6760529 to your computer and use it in GitHub Desktop.
其实就是设置个透明的footerView,有了footerView之后,就不会显示空白的cell;
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
- (void)setExtraCellLineHidden: (UITableView *)tableView | |
{ | |
UIView *view =[ [UIView alloc]init]; | |
view.backgroundColor = [UIColor clearColor]; | |
[tableView setTableFooterView:view]; | |
[view release]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment