Tagged Questions
The nsautoreleasepool tag has no wiki summary.
7
votes
2answers
198 views
Is an autorelease pool necessary if I'm not creating autoreleased objects?
I mean, if I were absolutely certain I wasn't creating any autoreleased objects, then of course it wouldn't. My real concern is if there's anything else under the hood I don't understand. I have a ...
6
votes
4answers
189 views
How to tell if object is in an NSAutoreleasePool
I would like to know how many times an object has been autoreleased. I've used objective c long enough that it's generally straight forward to know whether an object has been autoreleased or not, ...
5
votes
3answers
286 views
Under ARC, is it still advisable to create an @autoreleasepool for loops?
Let's say that I have a loop that returns a bunch of autoreleased NSData objects...
NSData* bigData = ...
while(some condition) {
NSData* smallData = [bigData subdataWithRange:...];
//process ...
4
votes
1answer
190 views
GNUStep NSAutoreleasePool incompatibility
According to another Stack Overflow post the drain message is an Apple-only call:
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init];
NSLog (@"Hello");
[pool drain];
return 0;
Is it safe to ...
3
votes
2answers
307 views
What iOS version is required to use @autorelease?
When I run code using @autorelease keyword on iOS 4.3.x it throws this error.
dyld: lazy symbol binding failed: Symbol not found: _objc_autoreleasePoolPush
Referenced from: ...
3
votes
2answers
5k views
NSAutoreleasePool is unavailable
I am following "Programming in Objective-C" 3rd edition and I am having problems with the first example.
I keep getting this error:
Semantic Issue: 'NSAutoreleasePool' is unavailable: not ...
3
votes
1answer
192 views
High memory usage during CoreData import
I'm attempting to perform a fairly large CoreData import (around 25,000 rows) while still maintaining a fairly low memory footprint. I've read the documentation surrounding efficient importing of data ...
3
votes
2answers
737 views
NSAutoreleasePool. When is it appropriate to create a new autorelease pool?
On iOS/CocoaTouch I often see code that creates a new instance of NSAutoreleasePool within a method. I recently saw one within an NSOperation.
What are the ground rules for setting up a new instance ...
3
votes
1answer
407 views
Loading screens in games (ensuring animations don't stutter during the transition)
I have a cocos2d game, it performs at between 55 and 60fps once the game is loaded and running.
However, due to using sprite sheets for both my menu's and game (one for each), there was a point of ...
3
votes
3answers
464 views
NSBlockOperation and NSAutoreleasePool
Normally when you create an NSOperation subclass you are responsible for creating and releasing an NSAutoreleasePool in the -main method.
When you use an NSBlockOperation, do you need to create an ...
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
4k views
Loading images into NSArray using initWithObjects crashes but not with an NSMutableArray?
I'm doing some lazy loading of images into an array when the app has loaded. I have tried using an NSMutableArray and an NSArray (I don't need to alter the array once it's been created) but the latter ...
2
votes
1answer
67 views
EXC_BAD_ACCESS in nested dispatch_async with an NSAutoreleasePool
I have some code which is similar to the following code:
dispatch_queue_t queue = dispatch_queue_create("", 0);
dispatch_queue_t inner_queue = dispatch_queue_create("", 0);
...
2
votes
3answers
49 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
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
80 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
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
1answer
362 views
Why use Autorelease pool?
I know there is an autorelease pool created in the main method and all the objects that receive autorelease message get stored in this pool and get released when the pool drains out.
But it is always ...
2
votes
3answers
708 views
End of run loop — autorelease pool recovery
As I understand autoreleased objects are cleaned once an autoreleased pool is released. Now, autorelease pool will be released at the end of the run loop.
My question is if in my class I am not ...
2
votes
1answer
816 views
Crash - “Collection <CALayerArray: 0x645dfc0> was mutated while being enumerated.”
Goal is to "launch a spinner graphic at start of viewWillAppear that loads data before showing the tableview" so the user doesn't wonder why there's a delay before seeing the table. I.e. a ...
2
votes
2answers
775 views
encountering numerous leaks on iphone device when using NSOperationQueue and trying to change sliders / pickers etc
encountering numerous leaks on iphone device when using NSOperationQueue and trying to change sliders / pickers etc.
I am able to change labels without an issue, but if I try to change a slider or ...
2
votes
2answers
844 views
how to properly use autoreleasepool for an nsoperationqueue
I have an app that I am refactoring and I just implemented multithreading so that the UI may run smoother. In the iphone simulator I don't get any leaks but testing on my iPhone 3G running on iOS 4.2 ...
2
votes
4answers
284 views
iPhone Autoreleasepool and allocations
I've been reading about autoreleasepool but there is a point which is a bit unclear to me. I have some functionality using threads that required seperate memory managment using autoreleasepool.
In ...
2
votes
1answer
286 views
NSOperation(s) leaks only on iOS 3 device
I have some NSOperations subclasses that handle CoreData imports. I believe i've ticked most of the non-main thread issues
I create my own autorelease pool in the
main method
I create a ...
2
votes
3answers
446 views
Can I early-release an autorelease object?
i.e. would cause the object to be released immediately and not have to be released by the pool if I did this?
[[NSArray arrayWithCapacity:100] release];
Can't find a clear explanation in the docs ...
2
votes
4answers
696 views
Using Apple autorelease pools without Objective-C
I am developing an application that needs to work on Linux, Windows and Mac OS X. To that purpose, I am using C++ with Qt.
For many reasons, on Mac OS X, I need to use CoreFoundation functions (such ...
1
vote
3answers
57 views
@autorelease and loops
Assume I have a code like this:
@autoreleasepool {
for(int i = 0; i < relatedSlideDecks.count; i++) {
MyClass *myObject = [MyClass new];
... something happens here
[myObject ...
1
vote
1answer
179 views
Why does Xcode 4.2 use @autoreleasepool in main.m instead of NSAutoreleasePool?
I've noticed that there is a different way in Xcode 4.2 to start the main function:
int main(int argc, char *argv[])
{
@autoreleasepool {
return UIApplicationMain(argc, argv, nil,
...
1
vote
1answer
56 views
How is a thread related to its NSAutorelease pool?
I have a general idea on how NSAutorelease pool works.
we have objects in it which are autoreleased and when the drain method is called.
the pool is checked for objects with retaincount as +1, and are ...
1
vote
1answer
45 views
Autorelease pool debugging
"break on objc_autoreleasenopool"
How can I do that?
I searched for it but could not find any steps.
Can anyone give a number of steps on what to do?
1
vote
1answer
167 views
Autoreleasepool and dispatch_async
I read the article about GCD, and there is an example:
dispatch_queue_t bgQueue = myQueue;
dispatch_async(dispatch_get_main_queue(), ^{
NSString *stringValue = [[[textField stringValue] copy] ...
1
vote
1answer
370 views
A fail concerning the expression @autoreleasepool
I downloaded a sample code from developer.apple.com called SimpleGestureRecognizer and in the main.m the program send a fail, because the program does not know the expression @auoreleasepool
The ...
1
vote
1answer
101 views
Threads and autoreleasepool questions
As I understand there are several ways to send tasks to be performed in threads. The most common ones that I use are:
1) performSelector:withObject:afterDelay:
2) ...
1
vote
2answers
74 views
Handling AutoRelease Pools and Threads
If I create a thread with a callback like..
NSAutoreleasePool* pool = [NSAutoreleasePool alloc] init];
while(1) {
//Process Stuff
}
[pool release];
I assume that anything autoreleased will never ...
1
vote
1answer
391 views
NSThreads in Automatic Referenc Counting(ARC)
i am trying to use NSThreads with ARC in 4.3.5. With iOS 5 everything works perfect, but if i try it on a older iOS like 4.3 its leaking. Normally i would use a Autoreleasepool for NSTreads but since ...
1
vote
1answer
83 views
Changing auto-released object to non-auto
Is there a way to change an autoreleased object to one that is non-autoreleased?
NSCoder's decodeObjectForKey returns an autoreleased object, which messes with a couple memory systems in my app. How ...
1
vote
1answer
246 views
objective c Thread in Thread variables life time
I have an NSOperation where inside its -main method I use [NSThread detachNewThreadSelector:@selector(aMethod:) toTarget:self withObject:anArgument];
aObject (instance variable of my NSOperation ...
1
vote
2answers
552 views
NSAutoreleaseNoPool(): Object 0x66ad9d0 of class NSConcreteMutableData autoreleased with no pool in place - just leaking
I am trying to perform thread operation in my project. The things are getting worked but I am getting NSAutoreleaseNoPool(): Object 0x66ad9d0 of class NSConcreteMutableData autoreleased with no pool ...
1
vote
1answer
328 views
iOS App crashes due to 'message sent to deallocated instance'
My iOS app has lots of network features. I of course save important data to the filesystem for offline viewing and so on, and it used to work perfectly without any problems. Now, when I try to test ...
1
vote
1answer
87 views
One AutoreleasePool per object?
I can't have a "big" NSAutoreleasePool in main() – I'm not allowed to touch it. So what's about having one pool per object?
struct MacGuiEngine
{
// members …
ScopedAutoreleasePool pool;
};
...
1
vote
1answer
528 views
iOS detachNewThreadSelector leaking
I have a UIScrollView that I am loading some images in. Sometimes I am apply an effect to an image and it takes a bit to do the pre-loading so I decided to do this on a different thread using ...
1
vote
2answers
315 views
Objective-C: Allocation in one thread and release in other
I am doing this in my Main Thread:
CCAnimation *anim; //class variable
[NSThread detachNewThreadSelector:@selector(loadAimation) toTarget:self withObject:nil];
In loadAimation:
-(void) ...
1
vote
2answers
651 views
NSAutoReleasePool Leaking
Can anyone tell me why is NSAutoreleasePool leaking in this code. I am using instruments to check leaks & this code is somehow leaking. Can anyone guide me to the right direction. I have the exact ...
1
vote
4answers
362 views
Releasing Autoreleasepool crashes on iOS 4.0 (and on 4.1 as well..)
I'm wondering what could cause this.
I have several methods in my code that i call using performSelectorInBackground.
Within each of these methods i have an Autoreleasepool that is being ...
1
vote
2answers
333 views
Manually deallocating NSValue
Is it possible to instantiate a NSValue with a pointer to a C structure without having to create a autorelease pool? For the moment, I do this:
NSValue* val = [NSValue valueWithPointer:(const ...
1
vote
3answers
268 views
How often should I put NSAutoreleasePools in place?
Hey, I am making a cocoa touch static library, And I have this problem:
I am running my project in the simulator with the Leaks instrument, And I am coming up with leaks for autoreleased objects.
I ...
1
vote
1answer
160 views
What's making NSArray access so slow?
I'm working up a graphics effect for an iPhone app that simulates a low-res plasma effect from old demoscene days. I've got 600 squares on screen that are updating as fast as possible. Since I am ...
1
vote
1answer
88 views
Number of Objects in Autorelease Pool
Is there any way to query the number of objects that reside in a given NSAutoreleasePool?
This is really important for me, because in my game there are several loops and I need to know how ...
1
vote
1answer
3k views
-[CALayer retain]: message sent to deallocated instance
I'm developing an iphone app and when I turn on my NSZombieEnabled I have regularly a crash on error :
*** -[CALayer retain]: message sent to deallocated instance 0xe6012e0
It always come when I ...
1
vote
1answer
211 views
Objects inside NSAutoreleasePool in objective-c
Is there a way to know the objects that are marked for releasing inside an NSAutoreleasePool.