1

当我使用项目的 Cocoa 部分时,我可以这样做:

[[self.aTextView textStorage] appendAttributedString:attrstg]; // textStorage is a mutable attributed string
// release attrstg and all its components
[attrstg release];
[dict release];
[paragStyle release];
[colorHSV release];

但是在 iOS 对应部分中,使用 Core Foundation 属性字符串,除非我挂在要附加的字符串及其属性字典以及进入属性字典的样式组件上,否则我会遇到访问错误的异常。

我已经进行了必要的更改以挂起 iOS 中的所有内容,并且一切正常——但是发生了什么?为什么这里有 Cocoa 和 iOS 的区别?任何一个属性字符串类的类 refs 中都没有提到这个问题。我是否遗漏了一些会在以后引起问题的东西?

4

0 回答 0