findingfield
findingfield
Easy to use, animation is very comprehensive, very good! But, there is only one available ProgressHUD,(singleton shared) works, and forced to add to a UIWindow, which is very confusing. Developers...
当前的init方法要传入一系列的ASAttributedString.Attribute,像这样: let aa = ASAttributedString( string: "aaaaaaaasss", .font(.systemFont(ofSize: 12)), .foreground(.label) ) 感觉不是很丝滑。 注意到ASAttributedString.Attribute里面的属性 let attributes: [NSAttributedString.Key: Any] 就是一个字典,但每次初始化都只加了一两个进去,能不能直接将字典放在 ASAttributedString 里面呢?然后链式调用将配置放进字典,更新覆盖,类似这样: let aa = ASAttributedString(string: "aaaaaaaasss") .font(.systemFont(ofSize: 12)) .foreground(.label) .font(.systemFont(ofSize: 20))...
### 议题条件 - [x] 我确认已查看官方使用文档:https://layui.dev ,但没有找到相关解决方案。 - [x] 我确认已在 [Issues](https://github.com/layui/layui/issues?q=is%3Aissue ) 中搜索过类似的问题,但没有找到相关解决方案。 - [x] 我已仔细阅读: 🍀[ Layui Issue 贡献指南](https://github.com/layui/layui/blob/main/CONTRIBUTING.md) ### 议题类型 疑是 BUG ### 使用版本 v2.9.21 ### 问题描述 table组件下方的分页选择部分过长时在窄屏幕例如手机端无法显示完整也无法滑动 看了下...