UICFFont 自动发布但没有适当的池?

发布于 2024-10-07 21:06:57 字数 608 浏览 2 评论 0原文

CGRect myImageRect = CGRectMake(3165, 1197, 332,43);
UILabel *myLabel = [[UILabel alloc] initWithFrame:myImageRect];
myLabel.text = @"WASHINGTON D. C.";

NSAutoreleaseNoPool():对象 UICFont 类的 0x7a39750 自动释放但没有池 - 只是泄漏 NSAutoreleaseNoPool(): 类的对象 0x6fc3920 UITextRenderingAttributes 自动释放 没有游泳池 - 只是漏水

从上面代码中的断点泄漏堆栈跟踪可以在这里找到: img52.imageshack.us/img52/9616/tutc.png

我正在使用 iPhone WWDC 2010 - 104 PhotoScroller (它包括 Tiling View.h)

如何解决这个问题?

CGRect myImageRect = CGRectMake(3165, 1197, 332,43);
UILabel *myLabel = [[UILabel alloc] initWithFrame:myImageRect];
myLabel.text = @"WASHINGTON D. C.";

NSAutoreleaseNoPool(): Object
0x7a39750 of class UICFFont
autoreleased with no pool in place -
just leaking NSAutoreleaseNoPool():
Object 0x6fc3920 of class
UITextRenderingAttributes autoreleased
with no pool in place - just leaking

the stack trace from a breakpoint in the above code can be found here : img52.imageshack.us/img52/9616/tutc.png

I'm using iPhone WWDC 2010 - 104 PhotoScroller (it includes Tiling View.h)

How to solve this problem ?

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

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

发布评论

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

评论(1

云雾 2024-10-14 21:06:57

该代码是否在后台线程上运行?

您需要创建一个自动释放池

// At the start of your thread
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

...
CGRect myImageRect = CGRectMake(3165, 1197, 332,43);
UILabel *myLabel = [[UILabel alloc] initWithFrame:myImageRect];
myLabel.text = @"WASHINGTON D. C.";
...

// At the very end of your thread
[pool release];

Is this code being run on a background thread?

You need to make an autorelease pool

// At the start of your thread
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];

...
CGRect myImageRect = CGRectMake(3165, 1197, 332,43);
UILabel *myLabel = [[UILabel alloc] initWithFrame:myImageRect];
myLabel.text = @"WASHINGTON D. C.";
...

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