Created
September 30, 2013 07:48
-
-
Save flashlib/6760559 to your computer and use it in GitHub Desktop.
其实就是设置一个透明的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