UICFFont 自动发布但没有适当的池?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
该代码是否在后台线程上运行?
您需要创建一个自动释放池
Is this code being run on a background thread?
You need to make an autorelease pool