4
votes
6answers
2k views
How to find the cause of a malloc “double free” error?
Hello
I'm programming an application in Objective-C and I'm getting this error:
MyApp(2121,0xb0185000) malloc: *** error for object 0x1068310: double free
*** set a breakpoint in malloc_error_break …
3
votes
5answers
1k views
Why is autorelease especially dangerous/expensive for iPhone applications?
I'm looking for a primary source (or a really good explanation) to back up the claim that the use of autorelease is dangerous or overly expensive when writing software for the iPhone.
Several …
2
votes
3answers
119 views
How to know if an object is autoreleased or not?
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 …
2
votes
6answers
256 views
Use autorelease before adding objects to a collection?
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.
The question is if it …
1
vote
2answers
46 views
iPhone SDK: How/when should I release a UITableView delegate object?
I am using a custom class as the delegate and datasource on a UITableView. I'm doing (something like) this in my viewDidLoad method:
MyClass *myObject = [[MyClass alloc] init];
…
1
vote
2answers
44 views
Iphone open gl es application and autorelease pool
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.
…
1
vote
3answers
94 views
My code either leaks and works, or doesn’t leak and crashes. This doesn’t seem like an autorelease problem…
After I finished coding the difficult parts of my game, I found some memory management bugs.
objects is a NSMutableArray holding a custom class.
- (void) spawnObjects
{
for (int index = 0; …
1
vote
1answer
63 views
What is the scope of (nested) autorelease pools?
Hello,
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 …
1
vote
3answers
319 views
stringWithContentsOfURL leaking memory
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:
_NSAutoreleaseNoPool(): Object 0xd92860 of …
1
vote
1answer
44 views
Releasing autorelease object does not crash my app why?
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?
1
vote
2answers
143 views
Objective-C on GNUstep AutoReleasePool undeclared problem
I'm new to Objective-C and working in GNUstep and MinGW environment. I am compiling this code but having an error:
#import "Foundation/Foundation.h"
@interface C : NSObject
{
float f;
}
- …
1
vote
5answers
171 views
Returning object initialized through “convenience constructor”
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 …
1
vote
2answers
113 views
Releasing objects returned by method in Objective-C
Ok, I know the answer to this question should be obvious, but I need a little push in the right direction.
I find myself writing a fair number of methods that follow the following pattern:
…
1
vote
3answers
152 views
Objective C : Releasing after removal from an array & reference pointers.
So some where i have a leak which is related to deleting an object under certain circumstances.
Premise:
- I have an NSMutableArray of Tree objects (a Tree object knows how to draw itself).
- I have …
1
vote
2answers
302 views
NSAutoreleasePool carrying across methods?
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 …
