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
cell高度根据QMUITextView内容撑开 QMUITextView实现代理 // 实现这个 delegate 方法就可以实现自增高
cell布局 都是给的上下左右边距约束
不加载骨架屏是正常显示
加载骨架屏动画结束后cell高度撑不开
The text was updated successfully, but these errors were encountered:
结束动画后,用update系列方法强行刷新试试。
Sorry, something went wrong.
[self.tableView tab_endAnimationEaseOut]; [self.tableView beginUpdates]; [self.tableView endUpdates];
还是不行
No branches or pull requests
return UITableViewAutomaticDimension;
}
return 66;
}
cell高度根据QMUITextView内容撑开
QMUITextView实现代理
// 实现这个 delegate 方法就可以实现自增高
BOOL needsChangeHeight = CGRectGetHeight(textView.frame) != height;
if (needsChangeHeight) {
UITableView *tableView = [self tableView];
[tableView beginUpdates];
[tableView endUpdates];
}
}
cell布局 都是给的上下左右边距约束
不加载骨架屏是正常显示
加载骨架屏动画结束后cell高度撑不开
The text was updated successfully, but these errors were encountered: