Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

34
votes
11answers
26k views

How to find the cause of a malloc “double free” error?

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 to ...
11
votes
3answers
5k views

What's the difference between sending -release or -drain to an Autorelease Pool?

In many Books and on many Sites I see -drain. Well, for an Autorelease Pool that sounds cool. But does it do anything other than an release? I would guess -drain just makes the Pool to -release all ...
9
votes
3answers
2k 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 ...
9
votes
5answers
8k 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 ...
8
votes
4answers
2k views

What do you think about this code in Objective-C that iterates thorugh retain count and call release every iteration?

I'm still trying to understand this piece of code that I found in a project I'm working on where the guy that created it left the company before I could ask. This is the code: -(void)releaseMySelf{ ...
8
votes
2answers
232 views

ARC equivalent of autorelease?

If I have tho code, + (MyCustomClass*) myCustomClass { return [[[MyCustomClass alloc] init] autorelease]; } This code guarantees the returning object is autoreleased. What's the equivalent with ...
8
votes
5answers
468 views

Why doesn't this crash?

I'm attempting to narrow down a bug to a minimum reproducible case and found something odd. Consider this code: static NSString *staticString = nil; int main (int argc, const char * argv[]) { ...
8
votes
4answers
1k views

Is it dangerous to set off an autoreleased NSOperationQueue?

I have a task that takes a rather long time and should run in the background. According to the documentation, this can be done using an NSOperationQueue. However, I do not want to keep a class-global ...
7
votes
2answers
124 views

iOS: How to avoid autoreleased copies when manipulating large NSString instance?

I have a scenario in an iOS application where manipulating a very large NSString instance (an HTTP response, upwards of 11MB) results in multiple large intermediaries being in memory at once, since ...
6
votes
3answers
234 views

autorelease vs. release in dealloc

I know memory management in iOS is tricky subject to newbies like me, but I was hoping for a clear explanation here on stackoverflow which I could not find anywhere else. So, pretend I have a ...
6
votes
3answers
363 views

60 hz NSTimer and autoreleased memory

I have an NSTimer firing at 60 fps. It updates a C++ model and then draws via Quartz 2D. This works well except memory accumulates quickly even though I am not allocating anything. Instruments ...
5
votes
2answers
609 views

When is an autoreleased object actually released?

I am new in objective-c and I am trying to understand memory management to get it right. After reading the excellent Memory Management Programming Guide for Cocoa by apple my only concern is when ...
5
votes
1answer
982 views

Objective-C memory management (alloc and autorelease)

When you allocate and initialize and object, and then want to return that object, how are you supposed to return it? I have the following code: NSXMLDocument* fmdoc = [[NSXMLDocument alloc] ...
5
votes
2answers
3k views

Why is there no autorelease pool when I do performSelectorInBackground:?

I am calling a method that goes in a background thread: [self performSelectorInBackground:@selector(loadViewControllerWithIndex:) withObject:[NSNumber numberWithInt:viewControllerIndex]]; then, I ...
4
votes
4answers
101 views

How to transfer ownership out of an @autoreleasepool with ARC

I have the following code - (NSString *)stringByEscapingXMLEntities; { NSString *result; @autoreleasepool { result = [self stringByReplacingOccurrencesOfString:@"&" ...
4
votes
2answers
97 views

property assignment followed by autorelease

I have am constantly thinking of making my code less buggy. I've seen this many times when cleaning up other programmers code and am wondering if I'm right in my assumption that the call in a ...
4
votes
3answers
671 views

Objective C: How to release delegates in this situation

I am using custom delegate objects to do some cleanup tasks after a request finishes. ASIHTTPRequest doesn't retain delegates so I can't autorelease them. Right now this is how I am allocating and ...
4
votes
3answers
138 views

Reducing the memory footprint of a function with a lot of autoreleased variables?

I'm still wrapping my head around some of the nuances of memory management in objective-C, and came up with the following case I'm unsure about: + (NSDecimalNumber*)factorial: (NSDecimalNumber *)l { ...
4
votes
2answers
3k views

Creating NSDecimal

I am carrying out a number of calculations using NSDecimal and am creating each NSDecimal struct using the following technique: [[NSNumber numberWithFloat:kFloatConstant] decimalValue] I am using ...
3
votes
1answer
301 views

ARC Migration Tool on 10.7 giving error: it is not safe to remove an unused 'autorelease' message

I have inherited application developed on 10.6 and I want to migrate on 10.7. I would like to comply with Automatic Reference Counting and I started it. Conversion assistant is sending me and error ...
3
votes
3answers
86 views

Objective C - Memory Management and autorelease ???

Does autorelease guaranty that at the end of blocks the object will get released? Or is it better to manually release objects?
3
votes
2answers
411 views

iOS Objec-C error for object pointer being freed was not allocated

I'm getting the following error in xcode. error for object 0x4e18d00: pointer being freed was not allocated ** set a breakpoint in malloc_error_break to debug I've setup NSZombieEnabled in the ...
3
votes
2answers
231 views

iPhone core data - fetched managed objects not being released on device (fine on simulator)

I'm currently struggling with a core data issue with my app that defies (my) logic. I'm sure I'm doing something wrong but can't see what. I am doing a basic executeFetchRequest on my core data ...
3
votes
1answer
226 views

Does @“some text” give an autoreleased or retain 1 object back?

Given this code: // Initialize string NSString *name = @"Franzi"; @"" macro creates a NSString with given text (here the name Franzi) and a RETAIN COUNT OF 1? So @"" gives an NSString with have to ...
3
votes
2answers
527 views

Use autorelease when setting a retain property using dot syntax?

I see in some sample code that autorelease is used. I am not familiar with the instances when this is required. For example, if I create an annotation object Header file @interface ...
3
votes
2answers
211 views

Autoreleased NSMutableArray not populated

I want to populate an array like this: NSMutableArray *array = [self methodThatReturnsAnArray]; In the "methodThatReturnsAnArray"-method I create an array like this: NSMutableArray *arrayInMethod ...
3
votes
1answer
553 views

Is it safe to autorelease objects inside an NSOperation?

I am running NSInvocationOperation-type operations in an NSOperationQueue and was wondering if it is safe to autorelease objects - That is, if it is guaranteed that the thread started for each ...
3
votes
4answers
684 views

When to release the UIImage?

I use the following code to draw a subimage UIImage* subIm = getSubImage( large, rect ); [subIm drawInRect:self.bounds]; where getSubImage is defined as follows UIImage* getSubImage(UIImage* ...
3
votes
6answers
615 views

iPhone: memory leak on autoreleased object?

I am using the XMLParser class, which contains an array with XMLElement objects. The XMLElement is being allocated using the autorelease operation. However, for some reason I'm getting a memory leak ...
3
votes
3answers
571 views

Objective-C initialize (static method) called more that once?

I have code similar to this in Objective-C: SubclassOfNSObject *GlobalVariableThatShouldNeverChange; @implementation MyClass +(void) initialize { [super initialize]; ...
3
votes
3answers
654 views

Objective-C autorelease pool not releasing object

I am very new to Objective-C and was reading through memory management. I was trying to play around a bit with the NSAutoreleasePool but somehow it wont release my object. I have a class with a ...
3
votes
2answers
1k views

Is return autorelease a bug in objective c?

I am new to objective c and am trying to understand how/when autorelease is called. I understand the simple use case of: - (void) foo { Bar *b = [[[Bar alloc] init] autorelease]; [self ...
3
votes
3answers
969 views

NSURLCache crashes with autoreleased objects, but leaks otherwise

UPDATE: After submitting a radar to Apple it appears that this is a known issue (Radar #7640470). CSURLCache is designed to cache resources for offline browsing, as NSURLCache only stores data ...
3
votes
7answers
1k 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 ...
2
votes
4answers
36 views

Correct way of using @autoreleasepool's?

I would like to know if the following code is a good way to use the new @autoreleasepool, should I use it this way or let the main autoreleasepool take care of the objects? (void) ...
2
votes
3answers
50 views

shouldnt a autorelease call crash if there is no nsautoreleasepool declared?

I am sorry, I am new with cocoa programming and I am not sure if I got right how nsautoreleasepool works. Everywhere I read says something about the NSAutoreleasePool are responsable for all ...
2
votes
1answer
42 views

iphone: autoreleasing an object multiple times

what happens if i retain an object multiple times. Then, will autoreleasing it once, delete it from the memory when the autorelease pool is drained; or do i have to autorelease it as many times as i ...
2
votes
2answers
85 views

Best practice for NSAutoreleasePool in callbacks from another thread

I have a C++ library that I want to expose as an Objective-C framework, so it will be easier to use for Objective-C developers. In wrapping up the C++ library I have come across one particular problem ...
2
votes
2answers
81 views

Where is the autorelease pool for OS X application created and drained?

I'm refactoring my OS X application for ARC. Opening the main.m file, I was sure I would find the Autorelease Pool instantiation and drain (like iOS projects) but to my big surprise it wasn't there. ...
2
votes
1answer
555 views

Objective-C - weak property - getter autoreleases (Automatic Reference Counting)

I have a doubt regarding weak property in ARC (auto reference counting) My understanding (correct me if I am wrong): weak property behaves similar to the assign property except that when the ...
2
votes
1answer
88 views

Need clarification for NSAutoreleasePool

Whenever we are calling autorelease method, its object is going to NSAutoreleasePool. When the pool is drained, it is sending release to all the objects in the pool. My question is; In the main ...
2
votes
2answers
119 views

autorelease keyword

I'm new at objective c 2.0. I ran into this keyword autorelease and I just need some clarifications. I was just wondering what is the difference between the two lines of code below in objective - c ...
2
votes
3answers
1k views

object was probably modified after being freed

I am working on a project on iPhone. I am now initiating a new UIViewController from another UIViewController, and then switch between them. Here is my code. iGreenAppDelegate *delegate = ...
2
votes
4answers
92 views

Why is release often called shortly after a local var is used instead of just autoreleasing

I often see something like the following: UIBarButtonItem *anotherButton = [[UIBarButtonItem alloc] initWithTitle:@"Show" style:UIBarButtonItemStylePlain target:self ...
2
votes
1answer
242 views

[myArray addObject:[[objcBlock copy] autorelease]] crashes on dealloc'ing the array

I wrote a class for declaratively describing a sequence of UIView animations. My method takes a vararg of animation blocks and puts them in an array. So in my loop I want to do this: [animations ...
2
votes
2answers
56 views

What's the added benefit of retain/autoreleasing an already retained property?

At a project I'm currently working on I'm working through code of my predecessors. One of the things I encounter here and there are getters like this: - (NSDictionary *)userInfo { return ...
2
votes
4answers
205 views

Memory leak warning on release but not on autorelease

I have a problem with memory leak warning when releasing an object after returning it. I read a few posts about the similar subject but in those posts problem with releasing was that in the end "they" ...
2
votes
3answers
193 views

Why NSString variable needs to be retained?

I have the following code in my .h file: @interface Utils : NSObject { NSString *dPath; } @property(nonatomic, retain) NSString *dPath; And in my .m file: NSArray *documentPaths = ...
2
votes
1answer
203 views

Autorelease then retain for setters

According to the Google Objective-C Style Guide, we should autorelease then retain as so: - (void)setFoo:(GMFoo *)aFoo { [foo_ autorelease]; // Won't dealloc if |foo_| == |aFoo| foo_ = [aFoo ...
2
votes
4answers
318 views

Basic retain, autorelease question

retain and autorelease questions. // A UIView *temp = [[UIView alloc] init]; myView = temp; [temp release]; // B myView = [[UIView alloc] init]; Do the two codes have no differences? NSString ...

1 2 3 4 5