我正在学习objective-c并想澄清一件事:当我使用autoreleasepool时,我应该在使用测试对象后发送一条autorelease消息吗?
for (int i = 0; i < 10; ++i)
{
@autoreleasepool {
TestClass* tc1 = [[TestClass alloc] init];
//....... do some stuff with tc1
[tc1 autorelease];
}
}