問題のあるリークに遭遇しました。これは、Instrumentsのおかげで、CTFrameSetterCreateWithAttributedStringから発生しているように見えます。コールスタックは以下のとおりです。
1 CoreText -[_CTNativeGlyphStorage prepareWithCapacity:preallocated:]
2 CoreText -[_CTNativeGlyphStorage initWithCount:]
3 CoreText +[_CTNativeGlyphStorage newWithCount:]
4 CoreText TTypesetterAttrString::Initialize(__CFAttributedString const*)
5 CoreText TTypesetterAttrString::TTypesetterAttrString(__CFAttributedString const*)
6 CoreText TFramesetterAttrString::TFramesetterAttrString(__CFAttributedString const*)
7 CoreText CTFramesetterCreateWithAttributedString
この呼び出しスタックを生成するコードは次のとおりです。
CFAttributedStringRef attrRef = (CFAttributedStringRef)self.attributedString;
CTFramesetterRef framesetter = CTFramesetterCreateWithAttributedString(attrRef);
CFRelease(attrRef);
...
CFRelease(framesetter);
self.attributedStringは他の場所でリリースされます。私は他のすべてを正しくリリースしているように感じます...これらすべてを考えると、リークはどこから来ているのでしょうか?それは私の目的にとってかなり重要です-6-10MBのポップ。助けてくれてありがとう。