iOS如何给没有数据的cell隐藏分割线 发表于 2018-02-15 更新于 2023-05-27 分类于 iOS 应用场景:例如搜索时候只有一条数据,其他空白cell分割线隐藏起来123UIView *view = [[UIView alloc] init];[view setBackgroundColor:[UIColor clearColor]];self.tableView.tableFooterView = view; 为了方便其他地方用,可以给tableView写分类123@interface UITableView (Additions)- (void)mnz_hideTableEmptyDataSeparatorLine;@end 12345- (void)mnz_hideTableEmptyDataSeparatorLine { UIView *view = [[UIView alloc] init]; [view setBackgroundColor:[UIColor clearColor]]; self.tableFooterView = view;}