Search Results

2
votes

How best to debug a crash within objc_msgSend?

If you use NSZombieEnabled you can at least figure out what class the object is. …
8
votes

How careful are you with your return types in Objective-C?

I used to do the return [NSArray arrayWithArray:someMutableArray], but I was slowly convinced that it doesn't offer any real benefit. If a caller of your API is treating a returned obj …
1
vote

Objective-C returning alloc’d memory in a function == bad?

Autorelease guarantees the object until the release/drain of the current NSAutoreleasePool. It's perfectly acceptable (and standard practice) to return an autoreleased object from a method. …