-
Notifications
You must be signed in to change notification settings - Fork 78
New issue
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
挺喜欢这个库,但是使用的时候遇到了一些问题 #52
Comments
|
|
|
Table列表中大量使用ASAtteibutedString,会卡顿
因为之前12.0系统添加action有crash,于是升级了pods版本到3.3.3,于是反应会卡顿
然后通过instruments定位到问题在设置label.attributed.text,后来pod版本切回2.2.2版本,卡顿明显消失
发自我的iPhone
…------------------ 原始邮件 ------------------
发件人: LEE ***@***.***>
发送时间: 2022年10月12日 11:20
收件人: lixiang1994/AttributedString ***@***.***>
抄送: YangZJang ***@***.***>, Author ***@***.***>
主题: Re: [lixiang1994/AttributedString] 挺喜欢这个库,但是使用的时候遇到了一些问题 (Issue #52)
3.3.3版本性能问题,加载多条会明显卡顿 具体从哪方面体现的?
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
抱歉,这个是别的同事反馈的问题,描述不准确,包含emoji的文本,通过Range添加参数之后,文本会被替换成⍰,应该是emoji版本不对的问题
发自我的iPhone
…------------------ 原始邮件 ------------------
发件人: LEE ***@***.***>
发送时间: 2022年10月12日 11:20
收件人: lixiang1994/AttributedString ***@***.***>
抄送: YangZJang ***@***.***>, Author ***@***.***>
主题: Re: [lixiang1994/AttributedString] 挺喜欢这个库,但是使用的时候遇到了一些问题 (Issue #52)
title包含emjio表情通过索引匹配不准确这个也麻烦提供一下示例 🙏🏻
—
Reply to this email directly, view it on GitHub, or unsubscribe.
You are receiving this because you authored the thread.Message ID: ***@***.***>
|
同样的两个问题,我这边的情况是
|
麻烦了🙏🏻 |
关于字符串包含emoji使用NSRange出现乱码问题,最终查到Swift的count返回的只是Unicode字符个数,所以在去长度和下标的时候 要用 string.utf16.count |
另外发现在富文本中添加段落不生效的问题,这是我的使用方式: 最终showTitle添加段落并不生效 |
使用range的时候计算长度和下标用string.utf16.count就可解决 |
👍🏻👍🏻👍🏻👍🏻👍🏻 晚些我会发布新版本, 非常感谢 @yzjzmn |
@yzjzmn @propertyChen 方便提供一些emoji的示例吗? 我看了一下内部使用的都是 |
如你的代码: 因为使用了Range(4,3) 这三个😄符号会变成⍰,因为很多创建Range的时候会用到String.count计算下标和长度 关于字符串包含emoji使用NSRange出现乱码问题,最终查到Swift的count返回的只是Unicode字符个数,所以在去长度和下标的时候 要用 string.utf16.count |
|
3.3.3版本性能问题,加载多条会明显卡顿
iOS12使用action会crash
title包含emjio表情通过索引匹配不准确
The text was updated successfully, but these errors were encountered: