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描述 当设置普通和未选中字体不一致且选中标签title过长显示有问题
版本号 1.JXCategoryView版本号:1.6.3 2.手机系统版本号:17.4 3.手机型号:iPhone15 Pro
复现步骤
截图
The text was updated successfully, but these errors were encountered:
可以参考【大小缩放+Cell宽度缩放】示例,同步把cell大小也给变大。 JXCategoryTitleView *titleCategoryView = (JXCategoryTitleView *)testVC.categoryView; titleCategoryView.titleColorGradientEnabled = YES; titleCategoryView.titleLabelZoomEnabled = YES; titleCategoryView.titleLabelZoomScale = 1.3; titleCategoryView.titleLabelStrokeWidthEnabled = YES; titleCategoryView.selectedAnimationEnabled = YES; titleCategoryView.cellWidthZoomEnabled = YES; titleCategoryView.cellWidthZoomScale = 1.3;
Sorry, something went wrong.
按照示例代码发现新的问题,就是在文字比较长的的时候,cell整体宽度会比label的实际宽度多出很多,具体可以看下截图(复现的🌹只需要将标题文字改长一点即可)
No branches or pull requests
bug描述
当设置普通和未选中字体不一致且选中标签title过长显示有问题
版本号
1.JXCategoryView版本号:1.6.3
2.手机系统版本号:17.4
3.手机型号:iPhone15 Pro
复现步骤
2.具体的操作步骤:使用的官方Demo,只是把titleFont和titleSelectedFont分别设置成[UIFont systemFontOfSize:14]和[UIFont systemFontOfSize:18 weight:UIFontWeightBold]就会出现截图所示问题,看了一下源码,计算cell宽度的时候用的是titleFont而并不是titleSelectedFont
截图
The text was updated successfully, but these errors were encountered: