-1
votes
1answer
64 views
autorelease pool causes crash in RubyCocoa application
Hi,
I'm having crash in my application, which says
trying to pop an unknown autorelease pool:
10/19/09 11:40:11 AM MyApp[89480] *** attempt to pop an unknown
autorelease pool (0x11bc800)
How to …
1
vote
2answers
43 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];
…
0
votes
1answer
17 views
how to find objects with autorelease message?
Hi
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 …
1
vote
2answers
42 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.
…
2
votes
3answers
115 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 …
1
vote
3answers
90 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
62 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
290 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
139 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
165 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
3answers
149 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
106 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:
…
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 …
0
votes
2answers
207 views
iPhone Development - Release an autoreleased object
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 …
