所以我有一个关于自动释放池的问题。我创建了一个使用它如下:
dispatch_async(dispatch_get_main_queue(), ^{
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
NSMutableAttributedString * attributedString = [NSMutableAttributedString attributedStringWithString:object.text];
[attributedString setFont:[UIFont fontWithName:@"HelveticaNeue" size:15]];
[self.titleLabel_ setAttributedString:attributedString];
[self.titleLabel_ setLinkColor:self.textColor_];
[self parseTagsInComment];
[pool release];
});
这是对自动释放池的错误使用,因为我已经有一个自动释放的对象吗?