CTFramesetterCreateWithAttributedString EXC_BAD_ACCESS

发布于 2024-12-21 11:12:55 字数 457 浏览 2 评论 0原文

我使用核心文本来绘制某些东西,如果


CTFramesetterCreateWithAttributedString((CFAttributedStringRef)immutableContent);

我还打印 immutableContent (它是一个 NSAttributedString),它会收到 EXC_BAD_ACCESS 问题: 在此处输入图像描述

这里的问题是当发生这种情况时,我不知道如何调试它。 我猜 NSAttributedString 有问题,但我不知道如何修复它。此外,用于创建 NSAttributedString 的方法可以在另一个项目中使用。那为什么我很困惑~~

谢谢!

I use core text to draw sth and it receives EXC_BAD_ACCESS problem in case of


CTFramesetterCreateWithAttributedString((CFAttributedStringRef)immutableContent);

I also print immutableContent which is a NSAttributedString:
enter image description here

The problem here is when this happens, I don't know how to debug it.
I guess there is sth wrong with the NSAttributedString, but I don't know how to fix it. Besides, the method used to create the NSAttributedString works in another project. So why I am confused~~

thanks!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

你是我的挚爱i 2024-12-28 11:12:55

我的代码并且工作正常

NSMutableAttributedString* attrStrWithLinks = [self.attributedText mutableCopy];
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attrStrWithLinks);

self.attributedText - NSAttributedString

my code and works fine

NSMutableAttributedString* attrStrWithLinks = [self.attributedText mutableCopy];
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString((CFAttributedStringRef)attrStrWithLinks);

self.attributedText - NSAttributedString

不甘平庸 2024-12-28 11:12:55

在我们的例子中,发生的情况是另一个线程在框架设置期间更改字符串的属性。 SAKrisT 的方法之一是制作副本。另一种方法是序列化对字符串 CTFramesetterCreateWithAttributedString 调用的访问。

In our case, what happens is that another thread is changing the attributes on the string during the framesetting. One approach is SAKrisT's, which is to work on a copy. Another is to serialize access to the string CTFramesetterCreateWithAttributedString call.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文