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
Bug 表现 // 以前这么写 CGSize size = [view sizeThatFits:CGSizeMake(width, CGFLOAT_MAX)]; view.frame = CGRectMake(x, y, width, size.height);
// 现在可以这么写: view.frame = CGRectMake(x, y, width, QMUIViewSelfSizingHeight);
QMUITextView使用QMUIViewSelfSizingHeight,height值不正确
截图
如何重现
预期的表现 正常情况下,应该是什么表现
其他信息
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug 表现
// 以前这么写
CGSize size = [view sizeThatFits:CGSizeMake(width, CGFLOAT_MAX)];
view.frame = CGRectMake(x, y, width, size.height);
// 现在可以这么写:
view.frame = CGRectMake(x, y, width, QMUIViewSelfSizingHeight);
QMUITextView使用QMUIViewSelfSizingHeight,height值不正确
截图
如何重现
预期的表现
正常情况下,应该是什么表现
其他信息
The text was updated successfully, but these errors were encountered: