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];
…
-1
votes
1answer
63 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 …
2
votes
3answers
114 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
2answers
41 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
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
278 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 …
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 …
1
vote
5answers
161 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
137 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;
}
- …
0
votes
3answers
282 views
Multithreaded iPhone app crashes with [NSAutoreleasePool release]
Hi,
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:
- …
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 …
0
votes
2answers
204 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 …
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 pattern:
…
1
vote
6answers
247 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 …
