-1
votes
1answer
62 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 (0x …
1
vote
2answers
40 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];
t …
0
votes
1answer
16 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 poo …
1
vote
2answers
39 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 …
2
votes
3answers
111 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 d …
1
vote
3answers
89 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
{
…
1
vote
1answer
59 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 …
1
vote
3answers
253 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(): Ob …
1
vote
1answer
43 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
133 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
{
…
1
vote
5answers
154 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 con …
1
vote
3answers
145 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 dr …
1
vote
2answers
104 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 …
4
votes
6answers
1k 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 …
0
votes
2answers
199 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 buttonWithTy …
