自動解放プールについて質問があります。次のように使用するものを作成しました。
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];
});
自動解放されたオブジェクトを既に持っているため、これは自動解放プールの間違った使用法ですか?