active questions tagged autorelease - Stack Overflowmost recent 30 from stackoverflow.com2009-12-07T18:29:24Zhttp://stackoverflow.com/feeds/tag/autoreleasehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1596439/autorelease-pool-causes-crash-in-rubycocoa-application-1autorelease pool causes crash in RubyCocoa applicationNava Carmon2009-10-20T18:22:53Z2009-11-16T14:27:36Z
<p>Hi,</p>
<p>I'm having crash in my application, which says</p>
<p>trying to pop an unknown autorelease pool:
10/19/09 11:40:11 AM MyApp[89480] *** attempt to pop an unknown<br>
autorelease pool (0x11bc800)</p>
<p>How to trace it down?</p>
<p>Since it's RubyCocoa application it's almost impossible to trace it with gdb in Xcode environment. So mostly it's about logging. There is an irb debugger, which gives same results as logging.</p>
<p>Thanks,</p>
<p>Nava</p>
http://stackoverflow.com/questions/1697211/iphone-sdk-how-when-should-i-release-a-uitableview-delegate-object1iPhone SDK: How/when should I release a UITableView delegate object?Chris Newman2009-11-08T17:17:53Z2009-11-08T17:53:01Z
<p>I am using a custom class as the delegate and datasource on a UITableView. I'm doing (something like) this in my viewDidLoad method:</p>
<pre><code>MyClass *myObject = [[MyClass alloc] init];
tableViewOutlet.delegate = myObject;
tableViewOutlet.dataSource = myObject;
</code></pre>
<p>Surely I need to decrease the retain count on myObject somewhere? But calling [myObject release] here has very bad results - the delegate gets destroyed before the table has finished doing its stuff.</p>
<p>I have tried</p>
<pre><code>MyClass *myObject = [[[MyClass alloc] init] autorelease];
</code></pre>
<p>but it also has terrible consequences.</p>
<p>Do I have a memory leak here? If so, how and when do I release the delegate safely?</p>
http://stackoverflow.com/questions/1524981/how-to-find-objects-with-autorelease-message0how to find objects with autorelease message? Hrishidev2009-10-06T11:14:47Z2009-10-07T21:21:01Z
<p>Hi </p>
<p>My application crashes when the autorelease pool is released. The reason seems to be that the object with autorelease message is sent a release message sometime before the pool is released, hence the application crashes for object which is already released.</p>
<p>Hence I want to find which objects have a pending autorelease message, so that I can balance the retain .. release/autorelease messages to that object </p>
http://stackoverflow.com/questions/1488421/iphone-open-gl-es-application-and-autorelease-pool1Iphone open gl es application and autorelease poolMel2009-09-28T17:52:00Z2009-09-28T20:03:05Z
<p>So I am creating my first opengl es application on the iphone. I want to autorelease an object and that was around the time I noticed that I can't seem to find the location of the autorelease pool.</p>
<p>1) Is the autorelease pool already created for me in an iphone opengl es application?
2) If it is already created for me how often is the pool being drained?</p>
http://stackoverflow.com/questions/1466630/how-to-know-if-an-object-is-autoreleased-or-not2How to know if an object is autoreleased or not?quano2009-09-23T15:10:49Z2009-09-23T15:45:22Z
<p>I'm getting a a bit annoyed about some objects being autoreleased without me knowing. It's probably a good thing that they are, but if they are, I want to know. The documentation doesn't say which methods autorelease objects, so I usually test my way forward, which in my opinion is silly. For example, [NSDate date] autoreleases the object, and so does [NSArray arrayWithObjects:...]. How do you know without the documentation telling you?</p>
<p>I'm starting to see a pattern though that methods like these, the ones that create objects with a static function, always returns the autoreleased object. Is this always true?</p>
http://stackoverflow.com/questions/1423698/my-code-either-leaks-and-works-or-doesnt-leak-and-crashes-this-doesnt-seem-li1My code either leaks and works, or doesn't leak and crashes. This doesn't seem like an autorelease problem...unknown (google)2009-09-14T20:22:11Z2009-09-14T20:43:16Z
<p>After I finished coding the difficult parts of my game, I found some memory management bugs. </p>
<p>objects is a NSMutableArray holding a custom class. </p>
<pre><code>- (void) spawnObjects
{
for (int index = 0; index < INITIAL_OBJECTS; index++)
{
[objects addObject:[[[MatchObject alloc] initWithImageNameID:(index % 3)] autorelease]];
[[objects objectAtIndex:index] setPosition:[GameLayer randomPoint]];
}
...
}
</code></pre>
<p>I later use this function.</p>
<pre><code>- (void) checkAllSprites
{
NSMutableArray *spritesToDelete = [NSMutableArray array];
for (int index = 0; index < [points count] - 1; index ++)
{
for (MatchObject *planetLike in objects)
{
CGPoint point1 = [[points objectAtIndex:index] CGPointValue];
CGPoint point2 = [[points objectAtIndex:index+1] CGPointValue];
if ([GameLayer lineIntersectsCircle:point1 :point2 :[planetLike position] :16.0f])
{
ParticleSystem *planetDeath = [ParticlePlanetDeath node];
planetDeath.texture = [[TextureMgr sharedTextureMgr] addImage:@"fire.pvr"];
planetDeath.position = [planetLike position];
[self addChild:planetDeath z:0 tag:2];
[spritesToDelete addObject:planetLike];
[self removeChild:planetLike cleanup:YES];
}
}
}
[objects removeObjectsInArray:spritesToDelete];
[spritesToDelete removeAllObjects];
}
</code></pre>
<p>If I do not autorelease in the first function, the app works fine. If I do, then I try to access a dealloced object ([MatchObject position]). </p>
<p>What's wrong?!</p>
http://stackoverflow.com/questions/1400826/what-is-the-scope-of-nested-autorelease-pools1What is the scope of (nested) autorelease pools?cocoliscious2009-09-09T16:54:17Z2009-09-09T17:18:33Z
<p>Hello,</p>
<p>I'm creating an autorelease pool in a for loop (in method A). At each iteration of the loop, I'm calling another method (method B). Method B returns an autoreleased object to Method A. If I drain the pool within the for loop in Method A, will that release the objects sent from Method B?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1354610/stringwithcontentsofurl-leaking-memory1stringWithContentsOfURL leaking memoryAbhishek2009-08-30T18:51:41Z2009-08-30T21:01:07Z
<p>Would it shed more light if I told that fetchHTML was being called in a seperate thread? I am also seeing several messages in the debug console such as:</p>
<p>_NSAutoreleaseNoPool(): Object 0xd92860 of class NSCFDictionary autoreleased with no pool in place - just leaking</p>
<p>_NSAutoreleaseNoPool(): Object 0xd92800 of class NSCFString autoreleased with no pool in place - just leaking</p>
<p>I am new to iPhone app development, Objective-C but not new to programming or C/C++. I am using the leaks performance tool and it shows many leaks. This is a 10.5 kb leak and it occurs on the line:</p>
<pre><code>NSString * xml = [NSString stringWithContentsOfURL:urlobj];
</code></pre>
<p>The stack trace on this below is:</p>
<pre><code>stringWithContentsOfURL
initWithContentsOfURL
initWithDataOfEncoding
...
</code></pre>
<p>Does anyone have an idea why this must be happening. I am under the impression that I get an autorelease object here and I can return this to the caller without calling retain. I am not using the xml object to store in an instance variable, just for processing.</p>
<p>Here is the function code:</p>
<pre><code>- (NSString *) fetchHTML: (NSString* ) url{
@try
{
NSURL* urlobj = [NSURL URLWithString:url];
NSString * xml = [NSString stringWithContentsOfURL:urlobj];
return xml;
}
@catch( NSException *ex){
NSLog(@"Error fetchingHTML");
return nil;
}
return nil;
}
</code></pre>
http://stackoverflow.com/questions/1328161/releasing-autorelease-object-does-not-crash-my-app-why1Releasing autorelease object does not crash my app why?Rakesh.P2009-08-25T13:06:28Z2009-08-25T13:08:19Z
<p>why app does not crash when i release any autorelease object, or is it that my app will crash some time later when autorelease pool is drained? </p>
http://stackoverflow.com/questions/1284659/objective-c-on-gnustep-autoreleasepool-undeclared-problem1Objective-C on GNUstep AutoReleasePool undeclared problemg.revolution2009-08-16T16:18:12Z2009-08-17T15:33:10Z
<p>I'm new to Objective-C and working in GNUstep and MinGW environment. I am compiling this code but having an error:</p>
<pre><code>#import "Foundation/Foundation.h"
@interface C : NSObject
{
float f;
}
- (void) gamerHell: (NSString *) name : (NSString *) lastName ;
@end
@implementation C
- (void) gamerHell: (NSString *) firstName : (NSString *) lastName {
NSLog(@"Welcome, %s %s",firstName,lastName);
}
@end
int main(int argc , const char * argv[]){
NSAutoReleasePool * pool = [[NSAutoReleasePool alloc] init];
C *ob = [[C alloc] init];
[ob gamerHell: @"SHAN" : @"UL HAQ"];
[ob release];
[pool drain];
return 0;
}
</code></pre>
<p>It is giving a compile-time error like this:</p>
<blockquote>
<p>'NSAutoReleasePool' is undeclared (first use in this function)</p>
</blockquote>
<p>What should I do to overcome this error?</p>
http://stackoverflow.com/questions/1266721/returning-object-initialized-through-convenience-constructor1Returning object initialized through "convenience constructor"Brian2009-08-12T14:54:56Z2009-08-12T15:39:05Z
<p>When an instance method returns a value that was initialized with a convenience constructor, do I need to retain that object and then autorelease in the return so that when the convenience constructor's autorelease occurs, it doesn't remove the object.</p>
<p>Will this release description before the calling code and take ownership with a retain or something?</p>
<pre><code>- (NSStringMutable *)test {
NSMutableString *description = [NSMutableString stringWithString:@"Test Value"];
return description;
}
</code></pre>
<p>Or should it be like this?</p>
<pre><code>- (NSStringMutable *)test {
NSMutableString *description = [NSMutableString stringWithString:@"Test Value"];
[description retain];
return [description autorelease];
}
</code></pre>
<p>Calling Code:</p>
<pre><code>NSMutableString *testVar = [[NSMutableString alloc] initWithString:[object description]];
</code></pre>
http://stackoverflow.com/questions/1247635/objective-c-releasing-after-removal-from-an-array-reference-pointers1Objective C : Releasing after removal from an array & reference pointers.Edward An2009-08-08T00:48:30Z2009-08-11T01:16:25Z
<p>So some where i have a leak which is related to deleting an object under certain circumstances.</p>
<p>Premise:
- I have an NSMutableArray of Tree objects (a Tree object knows how to draw itself).
- I have a reference pointer (Tree *selected) which basically points to whatever tree i last touched.
- Note that the *selected pointer is a weak reference.</p>
<p>Ok, so far so good.</p>
<p>Problem:
The leak arises when i delete a Tree. From the list i make sure the tree being deleted is releasing everything internally before removing it from the array (removing it from the array should automatically call release on it).</p>
<p>What i tried:
I noticed that my Tree *selected pointer is being assigned the touched tree via the self property:</p>
<blockquote>
<p>self.selected = tree;</p>
</blockquote>
<p>...and by doing this i know that it is being retained. So what i tried to do was call:</p>
<blockquote>
<p>[self.selected release];</p>
</blockquote>
<p>I called this right after the tree is removed from the array.
...but at which point it crashes essentially stating it was already released.</p>
<p>Question:
Why am i getting this error message? I removed it from the array, however my self.selected pointer still has a retained count, thus shouldn't i be releasing it?</p>
<p>Perhaps I should set it to nil after the removal process?
Or, perhaps I should set it to autorelease BEFORE the removal process?</p>
http://stackoverflow.com/questions/1250651/releasing-objects-returned-by-method-in-objective-c1Releasing objects returned by method in Objective-CMark Lorenz2009-08-09T04:44:01Z2009-08-09T20:00:55Z
<p>Ok, I know the answer to this question should be obvious, but I need a little push in the right direction.</p>
<p>I find myself writing a fair number of methods that follow the following pattern:</p>
<pre><code>-(NSThing*)myMethod{
NSThing *thing = [[NSthing alloc] init];
// do some stuff with the thing
return thing;
}
</code></pre>
<p>My question is, how do I handle the release of this object? Clearly I can't release it within the method.</p>
http://stackoverflow.com/questions/971249/how-to-find-the-cause-of-a-malloc-double-free-error4How to find the cause of a malloc "double free" error?gonso2009-06-09T16:49:50Z2009-08-05T10:51:57Z
<p>Hello</p>
<p>I'm programming an application in Objective-C and I'm getting this error:</p>
<pre><code>MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double free
*** set a breakpoint in malloc_error_break to debug
</code></pre>
<p>It is happening when I release an NSAutoreleasePool and I can't figure out what object I'm releasing twice.</p>
<p>How do I set his breakpoint?</p>
<p>Is there a way to know what is this "object 0x1068310"?</p>
<p>thanks in advance</p>
<p>Gonso</p>
http://stackoverflow.com/questions/1210662/iphone-development-release-an-autoreleased-object0iPhone Development - Release an autoreleased objectMk122009-07-31T04:19:18Z2009-07-31T04:53:23Z
<p>What happens if I release an autoreleased object? Its an autoreleased UIButton I want to release and the only way to create a UIButton is to use the convinience method buttonWithType:. Will it be released from memory like a normal object? Or should I just let the autoreleasepool take care of it? I wouldn't have made it autoreleased in the first place if I could.</p>
<p>Thanks!!</p>
http://stackoverflow.com/questions/1190456/multithreaded-iphone-app-crashes-with-nsautoreleasepool-release0Multithreaded iPhone app crashes with [NSAutoreleasePool release]Romain2009-07-27T20:33:51Z2009-07-28T08:55:16Z
<p>Hi,</p>
<p>I have a memory management-related question in a multithreaded iPhone application.
Let's say we have this method, that is called in a separate thread than the main-UI-thread:</p>
<pre><code>- (BOOL)fetchAtIndex:(NSUInteger)index
{
NSURL *theURL = [NSURL URLWithString:[queryURLs objectAtIndex:index]];
// Pay attention to this line:
NSData *theData = [[NetworkHelper fetchFromNetwork:theURL] retain];
// Some code here...
// Now what should I do before returning result?
//[theData release]; ??
//[theData autorelease]; ??
return YES;
}
</code></pre>
<p>As you can see, I'm retaining the <code>NSData</code> I got back from my network operation. The question is: why shouldn't I release (or autorelease) it at the end of my method?
The only way I made it work is to use <code>retain</code> at first, and nothing then. If I use any other combination (nothing at all; <code>retain</code> then <code>release</code> or <code>autorelease</code>), my program crashes with <code>EXC_BAD_ACCESS</code> when I release the thread's <code>NSAutoreleasePool</code>.
What am I missing?</p>
<p>FYI, here is the main code for the thread:</p>
<pre><code>- (void)threadedDataFetching;
{
// Create an autorelease pool for this thread
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
// Reload data in separate thread
[self fetchAtIndex:0];
// Signal the main thread that fetching is finished
[self performSelectorOnMainThread:@selector(finishedFetchingAll) withObject:nil waitUntilDone:NO];
// Release all objects in the autorelease pool
[pool release]; // This line causes EXC_BAD_ACCESS
}
</code></pre>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1151596/where-are-autorelease-pools-required-in-a-secondary-nsthread-runloop0where are autorelease pools required in a secondary NSThread runloop?compound eye2009-07-20T03:26:17Z2009-07-20T05:00:23Z
<p>The run loop for the secondary thread of my application is below.
It has a nested control loops.</p>
<ul>
<li>The outer loop runs for the duration of the application</li>
<li>The inner loop runs while one view is open, then the thread waits while the view is not open.</li>
<li>Passes through the inner loop are short, a fraction of a second.</li>
</ul>
<p>My code does not knowingly leave any autoreleased objects in unreleased pools, but I do not know what the OS is doing.</p>
<p>In the main thread, cocoa wraps an autorelease pool around every pass through the run loop.<br>
In this secondary thread, I believe the closest equivalent is a pass through the inner loop.<br></p>
<p>The <strong>inner</strong> autorelease pool wraps each pass through the inner loop. </p>
<p>The <strong>middle</strong> pool wrap around the inner loop, so that objects created and autoreleased at this level are not held until the application terminates.</p>
<p>the <strong>outer</strong> pool wraps the whole runloop.</p>
<p><strong>How can i determine what effect the creation and release of all these pools is having on the speed of my code. <br>How can I determine whether all three pools are necessary or overkill?</strong></p>
<p><br>
<br>
<br></p>
<p>code and explanation:</p>
<pre><code>- (void)processLoop
{
NSAutoreleasePool * outerPool = [[NSAutoreleasePool alloc] init];
[processCondition lock];
//outer loop
//this loop runs until my application exits
while (![[NSThread currentThread] isCancelled])
{
NSAutoreleasePool *middlePool = [[NSAutoreleasePool alloc];
if(processGo)
{
//inner loop
//this loop runs typically for a few seconds
while (processGo && ![[NSThread currentThread] isCancelled])
{
NSAutoreleasePool *innerPool = [[NSAutoreleasePool alloc]; init];
//within inner loop
//this takes a fraction of a second
[self doSomething];
[innerPool release];
}
[self tidyThingsUp];
}
else
{
[processCondition wait];
}
[middlePool release];
}
[processCondition unlock];
[outerPool release];
}
</code></pre>
<p>the combination of:</p>
<ul>
<li>an inner while loop</li>
<li>NSCondition *processCondition</li>
<li>toggling <code>processGo </code> between <code>YES</code> and <code>NO</code></li>
</ul>
<p>allows me to stop and start the inner while loop without cancelling the thread. </p>
<pre><code>if (processGo == YES)
</code></pre>
<p><br>
execution enters the inner while loop.<br></p>
<p>When the main thread sets</p>
<pre><code>processGo = NO
</code></pre>
<p>execution leaves the inner while loop and tidys up <br>
on the next pass of the outer loop, execution hits</p>
<pre><code>[processCondition wait]
</code></pre>
<p>and waits</p>
<p>if the the main thread resets</p>
<pre><code>processGo == YES
</code></pre>
<p>and calls</p>
<pre><code>[processCondition wait]
</code></pre>
<p>execution re-enters the inner loop</p>
http://stackoverflow.com/questions/1147785/use-autorelease-before-adding-objects-to-a-collection2Use autorelease before adding objects to a collection?Philippe Leybaert2009-07-18T15:20:10Z2009-07-19T01:22:05Z
<p>I have been looking through the questions asked on StackOverflow, but there are so many about memory management in Objective-C that I couldn't find the answer I was looking for.</p>
<p>The question is if it is ok (and recommnded) to call autorelease before adding a newly created object to a collection (like NSMutableArray)? Or should I release it explicitly after adding it. (I know NSMutableArray willl retain the object)</p>
<p>This illustrates my question:</p>
<p><strong><em>Scenario A (autorelease):</em></strong></p>
<pre><code>- (void) add {
// array is an instance of NSMutableArray
MyClass *obj = [[[MyClass alloc] init] autorelease];
[array addObject:obj];
}
</code></pre>
<p><strong><em>Scenario B (explicit release):</em></strong></p>
<pre><code>- (void) add {
// array is an instance of NSMutableArray
MyClass *obj = [[MyClass alloc] init];
[array addObject:obj];
[obj release];
}
</code></pre>
<p>I assume both are correct, but I am not sure, and I sure don't know what the preffered way is.</p>
<p>Can the Objective-C gurus shed some light on this?</p>
http://stackoverflow.com/questions/255846/dealing-with-objects-returned-from-cocoa-convenience-methods1Dealing with objects returned from cocoa convenience methodskubi2008-11-01T17:48:26Z2009-07-16T17:41:39Z
<p>I'm having a lot of issues with NSDate objects being prematurely deallocated. I suspect that the issues may be related to the way that I deal with the objects returned from NSDate convenience methods. I <em>think</em> that my showDate property declaration in the JKShow class should be "retain", but changing it to assign or copy seems to have no effect on the issue.</p>
<pre><code>JKShow *show;
NSDate *date;
NSMutableArray *list = [[NSMutableArray alloc] init];
// Show 1
show = [[JKShow alloc] init];
//...
date = [gregorian dateFromComponents:dateComponents];
show.showDate = date;
[list addObject:[show autorelease]];
// Show 2
show = [[JKShow alloc] init];
//...
date = [gregorian dateFromComponents:dateComponents];
show.showDate = date;
[list addObject:[show autorelease]];
</code></pre>
<p><em>UPDATE</em></p>
<p>The issue was not in the code copied here. In my <code>JKShow init</code> method I was not retaining the date returned from the <code>NSDate</code> convenience method. Thanks for your help, everyone.</p>
http://stackoverflow.com/questions/811290/why-does-a-convencience-constructor-or-object-factory-have-to-care-about-releasin-1Why does a Convencience Constructor or Object Factory have to care about releasing the Object?Thanks2009-05-01T13:13:53Z2009-06-20T20:53:43Z
<p>Actually, if you use a method with "new", "create", "alloc" or "copy" in it's name, then you are responsible for releasing the object that is returned to you. BUT: Why do these methods make an call to -autorelease? Wouldn't this result in "over-releasing" the object?</p>
<p>Lets say I get that object from such a method, and then I call -release on that. The object is in the Autorelease Pool and has a reference count of 0. What would happen next, when the Autorelease Pool is released?</p>
http://stackoverflow.com/questions/1022250/how-do-i-handle-memory-management-in-this-situation0How do I handle memory management in this situation?Patricia2009-06-20T18:59:46Z2009-06-20T20:48:03Z
<p>I have two classes, a class that handles db connectivity and an entity class. The db class has an instance method called GetEntityByID:(int)entity_id. This method does a simple select statement, and creates an Entity class instance using an init method. </p>
<p>This works fine, however whoever calls GetEntityByID must remember to release it. Since GetEntityByID is not an "init" method, this doesn't seem right. How do I best handle memory management in this situation?</p>
http://stackoverflow.com/questions/1010629/nsautoreleasepool-carrying-across-methods1NSAutoreleasePool carrying across methods?Tim2009-06-18T03:23:14Z2009-06-18T05:13:47Z
<p>I'm building an iPhone application where I detach some threads to do long-running work in the background so as not to hang the UI. I understand that threads need NSAutoreleasePool instances for memory management. What I'm not sure about is if the threaded method calls another method - does that method also need an NSAutoreleasePool?</p>
<p>Example code:</p>
<pre><code>- (void)primaryMethod {
[self performSelectorInBackground:@selector(threadedMethod) withObject:nil];
}
- (void)threadedMethod {
NSAutoreleasePool *aPool = [[NSAutoreleasePool alloc] init];
// Some code here
[self anotherMethod];
// Maybe more code here
[aPool drain];
}
- (void)anotherMethod {
// More code here
}</code></pre>
<p>The reason I ask is I'm receiving errors that objects are being autoreleased with no pool in place, and are "just leaking."</p>
<p>I've seen other questions where people didn't have autorelease pools in place at all, and I understand why an autorelease pool is needed. I'm specifically interested in finding out whether an autorelease pool created in (in this example) <code>threadedMethod</code> applies to objects created in <code>anotherMethod</code>.</p>
http://stackoverflow.com/questions/929485/why-is-there-no-autorelease-pool-when-i-do-performselectorinbackground1Why is there no autorelease pool when I do performSelectorInBackground: ?Thanks2009-05-30T10:16:37Z2009-05-30T10:47:07Z
<p>I am calling a method that goes in a background thread:</p>
<p>[self performSelectorInBackground:@selector(loadViewControllerWithIndex:) withObject:[NSNumber numberWithInt:viewControllerIndex]];</p>
<p>then, I have this method implementation that gets called by the selector:</p>
<pre><code>- (void) loadViewControllerWithIndex:(NSNumber *)indexNumberObj {
NSAutoreleasePool *arPool = [[NSAutoreleasePool alloc] init];
NSInteger vcIndex = [indexNumberObj intValue];
Class c;
UIViewController *controller = [viewControllers objectAtIndex:vcIndex];
switch (vcIndex) {
case 0:
c = [MyFirstViewController class];
break;
case 1:
c = [MySecondViewController class];
break;
default:
NSLog(@"unknown index for loading view controller: %d", vcIndex); // error
break;
}
if ((NSNull *)controller == [NSNull null]) {
controller = [[c alloc] initWithNib];
[viewControllers replaceObjectAtIndex:vcIndex withObject:controller];
[controller release];
}
if (controller.view.superview == nil) {
UIView *placeholderView = [viewControllerPlaceholderViews objectAtIndex:vcIndex];
[placeholderView addSubview:controller.view];
}
[arPool release];
}
</code></pre>
<p>Althoug I do create an autorelease pool there for that thread, I always get this error:</p>
<pre><code>2009-05-30 12:03:09.910 Demo[1827:3f03] *** _NSAutoreleaseNoPool(): Object 0x523e50 of class NSCFNumber autoreleased with no pool in place - just leaking
Stack: (0x95c83f0f 0x95b90442 0x28d3 0x2d42 0x95b96e0d 0x95b969b4 0x93a00155 0x93a00012)
</code></pre>
<p>If I take away the autorelease pool, I get a whole bunch of messages like these. I also tried to create an autorelease pool around the call of the performSelectorInBackground:, but that doesn't help.</p>
<p>I suspect the parameter, but I don't know why the compiler complains about an NSCFNumber. Am I missing something?</p>
<p>My Instance variables are all "nonatomic". Can that be a problem?</p>
<p>UPDATE: I may also suspect that some variable has been added to an autorelease pool of the main thread (maybe an ivar), and now it trys to release that one inside the wrong autorelease pool? If so, how could I fix that? (damn, this threading stuff is complex ;) )</p>
http://stackoverflow.com/questions/799370/should-i-drain-or-release-an-autorelease-pool-in-iphone-os0Should I -drain or -release an autorelease pool in iPhone OS?Thanks2009-04-28T18:56:31Z2009-04-29T15:07:40Z
<p>The doc says:</p>
<blockquote>
<p>In a garbage-collected environment,
sending a drain message to a pool
triggers garbage collection if
necessary; release, however, is a
no-op. In a reference-counted
environment, drain has the same effect
as release. Typically, therefore, you
should use drain instead of release.</p>
</blockquote>
<p>If I get that right, they say that I should always use -drain, doesn't matter if there's Garbage Collection around or Reference Counting. On iPhone is no GC, so anyways I send -drain?</p>
<p>Unfortunately, the doc only talked about Cocoa, not Cocoa Touch or iPhone. So I am not sure if the same applies there.</p>
http://stackoverflow.com/questions/799582/is-it-possible-to-add-an-object-to-a-specific-autorelease-pool0Is it possible to add an object to a specific autorelease pool?Thanks2009-04-28T19:59:00Z2009-04-29T08:05:12Z
<p>In the docs there is an addObject: method of NSAutoreleasePool.</p>
<p>I thought about this:</p>
<p>NSString *myString = [[NSString alloc] initWithCString:"Does this work?"];
[thePool addObject:myString];
[anotherPool addObject:myString];</p>
<p>Is that possible? I always read that I can only add objects to the topmost one on the autorelease pool stack.</p>
http://stackoverflow.com/questions/581828/autorelease-scope1Autorelease scopeKaspa2009-02-24T13:57:14Z2009-04-28T22:13:58Z
<p>Hi,</p>
<p>I was wondering how the autorelese works on the iPhone. I though that once you send an autorelease to an object <strong>it is guaranteed</strong> to be retained in till the end of the scope of the block the <code>autorelease</code> was sent. Is that correct?</p>
<p>I was initializing a view from a NIB in the <code>applicationDidFinishLaunching</code> like below:</p>
<pre><code> (void)applicationDidFinishLaunching:(UIApplication *)application {
loginViewController = [[[LoginViewController alloc] initWithNibName:@"LoginView" bundle:nil] autorelease];
[window addSubview: [loginViewController view]];
[window makeKeyAndVisible];
}
</code></pre>
<p>and the view did not show at all, all there was on the screen was the <code>UIWindow</code></p>
<p>Now once I removed the <code>autorelease</code> from the end of the controller initialization all went smooth from there on.</p>
<p>What is this about?</p>
<p>Cheers,
K.</p>
http://stackoverflow.com/questions/797419/whats-the-difference-between-sending-release-or-drain-to-an-autorelease-pool0What's the difference between sending -release or -drain to an Autorelease Pool?Thanks2009-04-28T11:28:35Z2009-04-28T18:50:28Z
<p>In many Books and on many Sites I see -drain. Well, for an Autorelease Pool that sounds cool. But does it do anything other than an release? I would guess -drain just makes the Pool to -release all it's objects, without releasing the Pool itself. Just a guess.</p>
http://stackoverflow.com/questions/798950/is-the-main-m-really-the-place-where-the-autorelease-pool-of-the-main-run-loop-i1is the main.m really the place, where the autorelease pool of the main run loop is created by every event?Thanks2009-04-28T17:08:25Z2009-04-28T17:31:40Z
<pre><code>#import <UIKit/UIKit.h>
int main(int argc, char *argv[]) {
NSLog(@"new event...");
NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
int retVal = UIApplicationMain(argc, argv, nil, nil);
[pool release];
return retVal;
}
</code></pre>
<p>If that's the case, then the main() function would have to be called on every event, right? But I tried it, and the "new event..." log message comes just on app start. So I guess that there must be another autorelease pool in the main thread.</p>
http://stackoverflow.com/questions/797350/how-are-objects-in-an-autorelease-pool-referenced0How are objects in an autorelease pool referenced?Thanks2009-04-28T11:10:12Z2009-04-28T12:22:55Z
<p>I am wondering if the autorelease pool holds strong or weak references to the objects it holds. I would guess they are weak. When I add an object to an autorelease pool, it's just not immediately released but will be released when the pool is drained, right? So the references should be weak, i.e. the reference count (or retain count) keeps the same when I add an object to an autorelease pool?</p>
http://stackoverflow.com/questions/791061/autorelease-and-assign-properties-in-objective-c-on-iphone1Autorelease and "assign" properties in Objective-C? (On iPhone)craig2009-04-26T15:33:22Z2009-04-26T15:49:37Z
<p>I have an instance of a UITableView, and a separate class that adheres to the delegate and datasource protocols. I'm doing this like so:</p>
<pre><code>SubjectTableViewHandler *handler = [[[SubjectTableViewHandler alloc] init] retain];
tv.delegate = handler;
tv.dataSource = handler;
[handler autorelease];
</code></pre>
<p>I don't want to maintain the handler as an ivar, and if I take off the <code>retain</code> call at the end, when the <code>autorelease</code> happens, it is sent <code>release</code>, then added to the pool, which causes an EXC_BAD_ACCESS. So currently, the retain count is:</p>
<pre><code>(1) At init: 1
(2) At retain: 2
(3) delegate/datasource properties are 'assign', still 2
(4) At autorelease: 1, now in autorelease pool.
</code></pre>
<p>But then since the properties are 'assign', they will never be released, the retain count will never hit 0, and the handler will never be deallocated anyway. Is there any more efficient way to accomplish this than maintaining the handler as an ivar and releasing it in the <code>dealloc</code> method?</p>