We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
(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下划线,但是骨架图第一次不显示,第二次才显示
The text was updated successfully, but these errors were encountered:
是希望下划线显示吗?
Sorry, something went wrong.
是的,希望有下划线一直显示
No branches or pull requests
(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下划线,但是骨架图第一次不显示,第二次才显示
9e20f478899dc29eb19741386f9343c8_687323144751_v_0_1665630344.mp4
The text was updated successfully, but these errors were encountered: