Open shandawy opened 2 years ago
(UITableView *)tableView { if (!_tableView) { _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight) style:UITableViewStylePlain]; _tableView.dataSource = self; _tableView.delegate = self; _tableView.estimatedRowHeight = 0; _tableView.estimatedSectionFooterHeight = 0; _tableView.estimatedSectionHeaderHeight = 0; // _tableView.separatorStyle = UITableViewCellSeparatorStyleNone; _tableView.backgroundColor = [UIColor tab_normalDynamicBackgroundColor];
// 设置tabAnimated相关属性 // 可以不进行手动初始化,将使用默认属性 _tableView.tabAnimated = [TABTableAnimated animatedWithCellClass:[TestTableViewCell class] cellHeight:100]; _tableView.tabAnimated.canLoadAgain = YES; _tableView.tabAnimated.adjustBlock = ^(TABComponentManager * _Nonnull manager) { manager.animationN(@"titleLab").down(3).height(50); manager.animationN(@"timeLab").height(12).reducedWidth(70); manager.animationN(@"statusBtn").down(-5).height(12).radius(0.).reducedWidth(-20); };
} return _tableView; } 默认显示cell下划线,但是骨架图第一次不显示,第二次才显示
https://user-images.githubusercontent.com/83754257/195492248-f25d6496-3cce-490a-b234-48f52dc47328.mp4
是希望下划线显示吗?
是的,希望有下划线一直显示
(UITableView *)tableView { if (!_tableView) { _tableView = [[UITableView alloc] initWithFrame:CGRectMake(0, 0, kScreenWidth, kScreenHeight) style:UITableViewStylePlain]; _tableView.dataSource = self; _tableView.delegate = self; _tableView.estimatedRowHeight = 0; _tableView.estimatedSectionFooterHeight = 0; _tableView.estimatedSectionHeaderHeight = 0; // _tableView.separatorStyle = UITableViewCellSeparatorStyleNone; _tableView.backgroundColor = [UIColor tab_normalDynamicBackgroundColor];
} return _tableView; } 默认显示cell下划线,但是骨架图第一次不显示,第二次才显示
https://user-images.githubusercontent.com/83754257/195492248-f25d6496-3cce-490a-b234-48f52dc47328.mp4