-5

我是 iphone 应用程序开发的新手。我怀疑当我将自动释放或保留消息发送到自动释放池时会发生什么?

 NSAutoreleasePool  *autoRelease =[ [[ NSAutoreleasePool alloc] init] autorelease]; 

或者

NSAutoreleasePool  *autoRelease =[ [[ NSAutoreleasePool alloc] init] retain];
4

1 回答 1

2

当您执行其中任何一项操作时,都会引发异常。你不应该这样做。

于 2013-07-07T07:43:00.797 回答