1
vote
2answers
28 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
0answers
38 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
3answers
100 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
2answers
38 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 …
1
vote
3answers
82 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
53 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 …
0
votes
1answer
14 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
3answers
220 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
2answers
123 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
139 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 …
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
3answers
237 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:
…
1
vote
2answers
91 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 …
0
votes
2answers
183 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 …
1
vote
6answers
227 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.
T …
