an OS X API class, used to support Cocoa’s reference-counted memory management system
0
votes
1answer
18 views
Registering created object in outer @autoreleasepool block and strange __weak pointer behavior
Code:
@autoreleasepool {
id __autoreleasing obj = nil;
@autoreleasepool {
obj = [[NSObject alloc] init];
_objc_autoreleasePoolPrint();
}
...
1
vote
3answers
45 views
PyObjc autorelease pool
EDIT: Thanks for the advice. I'm still not clear on how the autorelease pools are actually handled.
Here's the actual code:
import platform, time
if (platform.system().lower() == "darwin"):
...
-1
votes
2answers
42 views
release outside created autoreleased object inside a autoreleasepool {} [closed]
How can i force a autoreleasepool to release my autorelease object which was created outside the autoreleasepool {}
the code im using
- (void)connectionDidFinishLoading:(NSURLConnection ...
0
votes
1answer
26 views
Why is my app crashes using __autoreleasing + __strong?
Here is my code:
void autoreleasingReturn (NSError * __autoreleasing *error)
{
// --- Crashing
*error = [[NSError alloc] init];
// --- Not crashing
// *error = [NSError ...
1
vote
1answer
53 views
Do I win memory by explicitly disposing imageView.Image?
I have this code in my app:
var newImage = // ...
if (imageView.Image != null && imageView.Image != newImage)
imageView.Image.Dispose ();
imageView.Image = newImage;
I have three ...
1
vote
2answers
66 views
iOS autorelease pool blocks
I was reading the documentation from apple about memory manangement when I got to autorelease pool blocks and something got me thinking.
Any object sent an autorelease message inside the autorelease ...
0
votes
3answers
90 views
iOS; NSAutoreleasePool is obsolete?
I am following a youtube video about CSV data access. But I have seen in the framework that NSAutoreleasePool is specified as obsolete. Have we got another way to develop access to CSV data file?
1
vote
2answers
73 views
Objective-C Memory Management: Am I understanding this?
I've finally decided to stop beating around the bush and teach myself some Objective-C. It's all making sense, except when I get to the memory management and this idea of the "autorelease pool".
From ...
1
vote
1answer
52 views
NSAutoReleasePool releasing view controller?
So I'm having a bit of a difficult time troubleshooting a crash log that I'm getting from our tester. The app is crashing with a EXC_CRASH (SIGSEGV), and the only recognizable code in any of the ...
0
votes
0answers
52 views
autorelease pool page corrupted
Whenever I am using ASIHTTPRequest class for making webservice call I am randomly getting the following crash
autorelease pool page 0x9418000 corrupted
magic a1a1a100 4f545541 454c4552 21455341
...
2
votes
1answer
74 views
the relationship of autorelease and runloop and thread?
I have a question about the autorelease,now I have the code below:
int main(int argc, char *argv[]){
@autoreleasepool {
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate ...
1
vote
1answer
132 views
Image loading with GCD receiving memory warning
I'm developing a photo gallery application using AssetsLibrary to load my device photos. When presenting a random image in another VC I've noticed the following : it takes about 1 or 2 seconds for my ...
0
votes
1answer
72 views
EXC_BAD_ACCESS what is the object getting released twice?
These are the screenshots from Zombie Profiling:
How do I know, which object was getting released earlier, which is again getting released in the pool drain?
I am using ARC, with @autoreleasepool ...
0
votes
1answer
56 views
Calling autorelease in a block
There’s a memory management issue with the following code:
dispatch_after(someTime, dispatch_get_main_queue(), ^(void){
[objectA doSomething];
[self ...
-2
votes
2answers
40 views
Memory management for classes like NSNumber, NSSet [duplicate]
These are classes and they declares pointers... to objects right? You send methods to them like objects.
NSNumber * myNumber = [NSNumber numberWithInteger: x];
So why are they not released like so:
...
2
votes
2answers
89 views
`objc_autoreleasePoolPush()` and `objc_autoreleasePoolPop()` functions and `@autoreleasepool` blocks
I read somewhere that when we use @autoreleasepool { } blocks with ARC enabled, the compiler generates code to get the objc_autoreleasePoolPush() and objc_autoreleasePoolPop() functions called at the ...
0
votes
2answers
62 views
Memory considerations for BFS in Objective-C
I've written a puzzle solver in Objective-C. It uses a breadth first search to explore the states reachable from the initial puzzle state. The search is terminated when the first winning state is ...
0
votes
2answers
99 views
Create autorelease pool on posix thread
I'm using a GTMLogger functions for formatted logging in my application. This application creates real-time posix threads (audio packets processing). Sometimes we need to perform a logging from within ...
-2
votes
1answer
237 views
What is autoreleasepool? - Objective-C [duplicate]
Possible Duplicate:
Why use Autorelease pool?
All Objective-C starting page opens with a default @autoreleasepool{...} statement under the main function declaration. But what is this ...
1
vote
2answers
61 views
is iPhone autorelease working for c arrays?
will autorelease release my non-object c array?
I am wondering, because perhaps only objects know their reference count?
here's my code:
-(int *)getCombination{
int xIndex = arc4random() % ...
1
vote
2answers
76 views
Search a value in a comma separated value file
Hi I have implemented the following method for searching a value in a csv file:
- (void)recordsForValue:(NSString*)searchedValue {
NSAutoreleasePool *pool = [[NSAutoreleasePool alloc]init];
...
0
votes
1answer
137 views
Significance of @autoreleasepool in iOS 6
Older version of XCode, if you remove autorelease pool code in main.m the application used to crash. But now even if I dont have any statement such as @autoreleasepool in main.m then also the app ...
3
votes
1answer
252 views
@autoreleasepool expected expression before @ token
I have an iOS project which uses ARC, and I'm receiving an error related to the the way I'm creating the app's @autoreleasepool.
In in main.m I have a small snippet of code such that:
#import ...
0
votes
0answers
137 views
iOS 5 and Facebook 3.1 SDK [facebook dialog: andParams: andDelegate:] __NSCFString autoreleased with no pool in place
Actual Question
Is __NSCFString autoreleased with no pool in place a known bug with Facebook SDK 3.1 on iOS 5 when showing dialogs?
Detail
I have a problem with __NSCFString autoreleased with no ...
2
votes
2answers
179 views
using autorelease in ARC enabled projects [duplicate]
Possible Duplicate:
ARC memory leaks
Can we use @autorelease pool in ARC enabled projects. If so, what is the use of using @autorelease pool. I found in google that, even if the project is ...
0
votes
1answer
174 views
limit on using autorelease pools in ios
How many autorelease you can create in your application? Is there any limit?
I searched for an answer in google, but didn't get any useful info.
And
int main(){
NSAutoreleasepool *pool = ...
0
votes
1answer
77 views
Are there many autorelease pools created in iOS App?
I am having doubts on when an autoreleased object. WHen I found this question,
In the thread's accepted answer, the below explanation is provided for the runloop execution:
void int ...
0
votes
1answer
65 views
Using Autoreleased Objects in iOS apps
To return a NSArray or NSDictionary, I have seen most people use the below implementation and this is also what some books suggest. (iOS Development A Practical Approach - )
OPTION 1
...
0
votes
2answers
339 views
performSelectorInBackground causes random crash when view is dismissing
I'm having some random crashes at this part of my code:
-(void) goBack {
[self performSelectorInBackground:@selector(addActivityIndicator) withObject:nil];
...
0
votes
1answer
142 views
Custom NSOperations autorelease pool
I have implemented some custom subclasses of NSOperation to use within a queue.
Where should (or could) I set up the @autoreleasepool?
Within my custom operation's main method?
Or around the ...
3
votes
2answers
1k views
Using ARC, is it fatal not to have an autorelease pool for every thread?
I read this:
If you ever create a secondary thread in your application, you need to provide it with its own autorelease pool. Autorelease pools and the objects they contain are discussed further ...
0
votes
2answers
37 views
When calling selector that has NSAutoreleasePool, why are somethings in Pool left allocated after releasing it?
I am calling a selector which I want to use to fire off a background process with the following
[self performSelectorInBackground:@selector(startSync) withObject:nil];
For an example, lets say ...
0
votes
1answer
117 views
Memory leak in DDXML parser
I load data from Internet, and parse it using DDXML parser in another thread. Here is code (callback connectionDidFinishLoading: is coming in background thread, I scheduled URLConnection at background ...
4
votes
1answer
160 views
POSIX callbacks and NSAutoreleasePool with ARC
According to this Apple page, I've read that when interacting with Cocoa on a POSIX thread that I should create a NSAutoreleasePool.
If you are making Cocoa calls outside of the Application Kit’s ...
0
votes
1answer
130 views
releasing thread1 exc_bad_access
I am new at IOS programing and I have program that works fine, but I found out that it has memory leek, so I start releasing object.
When I now start the program it give me an error:
...
1
vote
1answer
138 views
OS X ARC memory increase in repeated image loading
I have come across an issue when loading different NSImages repeatedly in an application written using Automatic Reference Counting. It seems as though ARC is not releasing the image objects ...
0
votes
3answers
222 views
iOS - @autoreleasepool solution for a crash or a workaround?
So the app was crashing with no stack trace or any exceptions, and I could replicate this crash every time. My first thought was that it has to be a double release, after running zombies for 10 ...
0
votes
2answers
135 views
NSTableView reloadData leaking memory
I've been checking my application for leaks using the Instruments application. Under a certain set of circumstances a table view in a HUD Panel is being updated once a second. It is all working fine ...
0
votes
1answer
51 views
Why not using autorleasepool block does not throw error?
I know that when we use a custom thread to create objects and use them. I tried the below code in an iOS application , it did not throw any error. Why?
-(void)Sample{
NSLog(@"Sample");
...
5
votes
4answers
184 views
Why do we need to use NSAutoreleasepool for each thread?
In iOS app development, we are using NSAutoreleasePool to relinquish ownership of objects at a later point in time.
But why can it be shared between different threads?
Why do we need to create a ...
2
votes
0answers
94 views
JOGL-2.0 NSAutoreleaseNoPool Error
I switched from JOGL 1.1 to JOGL 2, and for some reason, I'm getting strange errors.
I've isolated the problem to creating the GLCanvas.
public class Main {
public static void main(String[] ...
0
votes
1answer
330 views
*** __NSAutoreleaseNoPool(): Object 0x926d620 of class NSPathStore2 autoreleased with no pool in place - just leaking
My application is ARC enabled one.
In the app delegate i have written a code
[self performSelectorInBackground:@selector(initializeAnimationImageArrays) withObject:nil];
And my method is
- ...
0
votes
1answer
71 views
Usage of autorelease and retain
I have a simple question. Does autorelease work when the retain count is high?
for example... If I am in a view controller and do the following:
[self retain];
[self retain];
[self retain];
[self ...
0
votes
3answers
562 views
Showing Activity indicator while loading sqlite local database
I have a local SQLite Database and need to return a large number of records. It takes a several seconds to load so I want to add an activity indicator. The activity indicator seems to be running as it ...
3
votes
2answers
417 views
Autoreleasing twice an object
NSString *str = [[[[NSString alloc]init]autorelease]autorelease];
str = @"hii";
NSLog(@"%@",str);
Can any one help me to tell about this code. Autoreleasing the object twice what will ...
0
votes
2answers
108 views
Thread with lot of autoreleased objectIs is it mandatory to use autorelease pool on this scenario if yes/no why?
Consider we are implementing our own thread with lot of autoreleased object. Is it mandatory to use autorelease pool on this scenario if yes/no why?
0
votes
2answers
465 views
autoreleased with no pool in place - NO new thread is started
objc[23601]: Object 0x12b090f0 of class __NSCFSet autoreleased with no pool in place - just leaking - break on objc_autoreleaseNoPool() to debug
Why would the following code section print the ...
6
votes
2answers
397 views
No autorelease pool with JOGL
I tried to add JOGL to my project, and after a long time searching the web I found the solution. I added the jars to my buildpath and Eclipse recognizes them.
I wanted to test it, so took the code ...
3
votes
2answers
102 views
Does it matter if main( ) creates an NSAutoreleasePool and drains it before exit?
Because if main() creates an NSAutoreleasePool, and drains it before the program exits, then even though it can prevent memory leaks, the whole process's memory space is going to be freed up next ...
0
votes
1answer
113 views
Can an NSAutoreleasePool be drained twice or multiple times?
In the book I'm reading, it talks about forcing an NSAutoreleasePool to drain. Does this mean creating a local NSAutoreleasePool and then draining it, instead of draining the one that already exists? ...



