我在我的应用程序中使用了自动释放,并希望了解自动释放方法的行为。何时默认的自动释放池已耗尽?是基于计时器(每30秒?)还是必须手动调用?我是否需要做任何事情来释放用自动释放标记的变量?
答案 0 :(得分:5)
只要当前的运行循环结束,它就会耗尽。那就是你的方法和方法调用你的方法以及调用那个方法等的方法都完成了。
Application Kit在事件循环的每个循环开始时在主线程上创建一个自动释放池,并在最后将其排出,从而释放处理事件时生成的任何自动释放的对象
答案 1 :(得分:5)
创建和发布时有(我会说)3个主要实例:
1.应用程序生命周期的开始和结束,用main.m
编写int main(int argc, char *argv[]) {
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
2.每个事件的开始和结束(在AppKit中完成)
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
- (void)loadView
/* etc etc initialization stuff... */
[pool release];
3.无论什么时候你想要(你可以创建自己的池并发布它。[来自苹果内存管理文档])
– (id)findMatchingObject:anObject {
id match = nil;
while (match == nil) {
NSAutoreleasePool *subPool = [[NSAutoreleasePool alloc] init];
/* Do a search that creates a lot of temporary objects. */
match = [self expensiveSearchForObject:anObject];
if (match != nil) {
[match retain]; /* Keep match around. */
}
[subPool release];
}
return [match autorelease]; /* Let match go and return it. */
}