Created
December 26, 2014 04:12
-
-
Save majie1993/89b09628bd234c48442f to your computer and use it in GitHub Desktop.
Delete blank cell in the foot of UITableView
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]; | |
[tableView setTableHeaderView:view]; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment