TableView-UITableViewCellSeparat
2020-06-10 本文已影响0人
Mooners
在需要去除的Cell文件中,重写addSubview
- (void)addSubview:(UIView *)view
{
if (![view isKindOfClass:[NSClassFromString(@"_UITableViewCellSeparatorView") class]] && view)
[super addSubview:view];
}