The tag has no wiki summary.

learn more… | top users | synonyms

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
votes
2answers
41 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
25 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 ...
0
votes
0answers
13 views

web start style distribution

I want to distribute an application to many organizations without much technical staff, being able to upgrade the application easily (executables + data models), and be able to synchronize or directly ...
1
vote
1answer
34 views

View is only displaying for a fraction of a second

I have a LoginViewController class that extends UIViewController that is only displaying for a fraction of a second. In my AppDelegate.m class I try to allocate a UINavigationController that will ...
1
vote
2answers
62 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
1answer
41 views

Autorelease Pool Blocks

I was recently reading the Advanced Memory Management documentation when I stumbled upon the Autorelease Pool Blocks. The documentation states: You may use an autorelease pool block inside a loop ...
0
votes
1answer
52 views

autorelease caused a system crash iOS

I have the method without ARC to read plist file content: -(void)readAppFile { NSString *plistPath = [self getDataFileDestinationPath]; NSData *plistXML = [[NSFileManager defaultManager] ...
2
votes
1answer
73 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 ...
0
votes
2answers
104 views

Objective C @autoreleasepool infinite loop taking screenshots

I have a memory issue with small app taking infinite amount of screenshots every X milliseconds and displaying them in a imageview. Even with autorelease, it floods the memory very quickly. Here's the ...
3
votes
2answers
127 views

How to handle autoreleased objects in iOS with ARC

I am creating an iPhone application with ARC enabled, in this I am having a situation. In each page of the application, a web service call is happening. And in this method I am removing all the ...
2
votes
2answers
60 views

Is the following iOS code safe? (__autoreleasing semantics)

-(NSData *)jsonRepresentation:(NSError **error)error { NSDictionary *dict = [self getDictRepresentation]; return [NSJSONSerialization dataWithJSONObject:dict options:nil error:error]; } // Some ...
0
votes
1answer
42 views

iPhone issue while accessing Web service

I have created a project in Xcode. It will access webservice for each UIViewController. There are no issues while accessing those data from web services. But i can't navigate to the same page agin. I ...
0
votes
1answer
55 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 ...
1
vote
2answers
58 views

Releasing all the autoreleased objects in iOS

I am creating an iPhone application, in that I used ARC for memory management. In this application user has the option for login and logout. So, any user can login to their account at any time from ...
0
votes
1answer
68 views

retain a variable in a autorelease ios project

i am a beginner with ios programming, my project set it autorelease, and now i get a problem with autorelease function. i show my code and hope you can suport me to avoid this - (void)initPhotoImage ...
3
votes
2answers
74 views

ARC autoreleases too early (?)

I have a method call in class A: GDataXMLElement *infoElement = [self getElementFromFilePath:filePath]; NSString *testStringA = [infoElement attributeForName:@"someAttribute"].stringValue; and the ...
0
votes
0answers
157 views

App crashes after lock screen (using VVOSC and Device Motion)

I started IOS 2 weeks back and now..My app crashes when I lock screen and open again..Everything is fine until I lockscreen. Don't know where to start debugging and what is causing the problem.. ...
-2
votes
1answer
220 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 ...
0
votes
1answer
59 views

Xcode 'autorelease is unavailable in URL request

I have the following code in my .m file: - (IBAction)LoginButton:(id)sender { // create string contains url address for php file, the file name is phpFile.php, it receives parameter :name NSString ...
2
votes
1answer
77 views

What's the right way to set an NSError outparam from inside an autoreleasepool block?

I have a method like this: - (void)processAThing:(id)thing error:(NSError * __autoreleasing *)error { @autoreleasepool { // Start processing. // Find some partway through ...
2
votes
0answers
70 views

Memory warning when assigning new value to __autoreleasing inout parameter incorporating old value under ARC

I am implementing key-value validation like so: - (BOOL)validateValue:(__autoreleasing id *)value forKey:(NSString *)key error:(NSError *__autoreleasing *)error { NSAttributeDescription ...
1
vote
3answers
69 views

iOS App Crashes while releasing a retained property

I have a question. There may be a very simple solution to this question but I am not able to figure it out yet. If I use a property say @property(nonatomic, retain)UIView *mainView. Now I synthesize ...
0
votes
2answers
64 views

Why should I use autorelease in this scenario?

I'm an objective-c newbie and I just can't understand why it is a bad idea to release object that doesn't belong to me. Let's say I have this in the method called Europe //initForStringTheory is a ...
3
votes
1answer
70 views

addSubview notification not received

I'm facing a strange problem.. I want to add a UIViewcontroller (called iView) to my current View. I do it by calling iView = [[KFKaraokeInfosView alloc] initWithKaraoke:karaoke ...
0
votes
1answer
124 views

Is there anything potentially wrong with this autoRelease usage?

Or alternatively: how could this UILabel usage possibly generate an NSMutableDictionary NSInvalidArgumentException? This is a non-ARC iOS app. When showLabel (below) runs, I will occasionally, but ...
0
votes
1answer
80 views

NSInternalInconsistencyException - nul class for object in autorelease pool

As many should know now, I am new to Objective-C, and I need some help to complete this project. I am getting the error NSInternalInconsistencyException - nul class for object in autorelease pool. ...
0
votes
1answer
59 views

Objective C: releasing objects basic questions (non-ARC)

I have two rookie questions about memory management in non-ARC project without GC: in Objective C,when I 'autorelease' object and return it from method, should I 'release' it in the "parent method" ...
0
votes
5answers
56 views

How to release an NSMutable Array which we need to use in return statements

IM USING SQLITE DATABASE for my iPhone app In my app in data base to retried the content from the database i used an array and i return this array in a database method for select statement, for this ...
1
vote
3answers
77 views

Why is this autorelease error occurring with ARC enabled?

I wrote a small CLI program to delete specific Safari cookies for me. Functionally it's fine, but it's throwing up warnings about objects being "autoreleased with no pool in place". My project has ARC ...
0
votes
0answers
32 views

NSDate - Crashes when attempting to create a string

I can not get a NSDate to print to a NSLog - it works first time I attempt it but crashes when attempting it second time. I suspect it is a autorelease issue - but I am a newbie and I thought all I ...
0
votes
1answer
115 views

NSCopying and Objective-C memory management

Apple's NSCopying docs state that copyWithZone: returns an object that's implicitly retained by the sender. So when that object is added to an NSMutableArray it seems like the object should be sent an ...
0
votes
1answer
61 views

is it allowed to call [obj copy] in ObjC with ARC?

There's one thing I don't understand regarding ARC: how should we now treat local variables that were created using [... copy]? If I make a property with (copy) flag, ARC will handle this ...
2
votes
1answer
356 views

how to resize the subviews automatically for iOS6 beacuse autoresize is removed from iOS6?

how to resize all the subviews inside a view automatically for iOS6 beacuse autoresize is removed from iOS6?
1
vote
1answer
112 views

how to use auto-release in iphone

I want to use the auto-release in my apps. I want to implement this methods - (void)selectorConnect: (NSArray *)args { NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; //some ...
0
votes
2answers
154 views

Custom UITableViewCell On Autorelease causes a crash in application

I have a custom cell for my table view which I have designed using interface builder. In its .m file I have some code like this to fetch the xib from the bundle for the custom cell. - ...
1
vote
3answers
90 views

Detected autorelease objects

I using Test Driven Development in Objective-C for iOS and Mac OS X development, and I want to be able to write tests that can verify that objects I create with class factory methods return ...
3
votes
2answers
148 views

What happens if your mark an autorelease object as autorelease

My question may sound stupid an all, but I like to know what happens if I mark an autoreleased object as autorelease. Will it be released twice? Or nothing happens? For example: Obj * obj = [[Obj ...
1
vote
3answers
121 views

What will happen when autorelease object is assigned to strong variable [duplicate]

Possible Duplicate: Is AutoRelease redundant when using ARC in Objective-C? I am new to objective C and understanding its memory management . I was really stuck understanding the behavior ...
1
vote
1answer
87 views

iOS: Releasing Object Thats In Use (ARC)

I have an object that I have created that subscribes to some NSNotificationCenter notifications, but it is being released, since I don't have a pointer to the instantiation. The instantiation has a ...
1
vote
3answers
60 views

will call on release trigger the releasing of autorelease object?

For the following NSImage *image = [[UIImage imageNamed:@"foo.png"] retain]; ... [image release]; My understanding is that the object returned from imageNamed supposedly will be autoreleased. But ...
0
votes
1answer
60 views

Adding nil object to auto release pool not crashing

I am adding a nil object to autorelease pool. But it is not crashing the application. Why?? Any one can give an explanation for this please? The code I tested given below, UIView *testView = nil; ...
1
vote
2answers
1k views

iOS programming autorelease pool

In the Apple documentation, it says: The AppKit and UIKit frameworks process each event-loop iteration (such as a mouse down event or a tap) within an autorelease pool block. Therefore you ...
-4
votes
2answers
106 views

When on earth we need to use autorelease? [closed]

As the title, recently I have been asked this question several times. I cant have a good reply. Does anyone have suggestion? Thanks, ken
2
votes
0answers
218 views

ARC behavior with no autorelease pool on bg thread

It seems like ARC is calling [[obj retain] autorelease], when assigning like Foo* foo = [Foo getInstance] Thats why I have to add a pool there, if it's happening on a BG thread. @autoreleasepool { ...
0
votes
1answer
251 views

memory leak in @autoreleasepool block

I use Xcode 4.4 and I develope app for iOS 5.1 with ARC. I have a thread (other than main) that invokes periodically method below. - (void)updateLabels:(NSTimeInterval)timeSinceLastUpdate { ...
2
votes
5answers
138 views

will reassign a pointer cause memory leak?

I have the following code and wondering what will happen when iOS is recollecting the allocated memories. Will the memory p1 pointed to get autoreleased afterwards, although it's pointing to a ...
0
votes
2answers
52 views

assign to another object with retain and autorelease

I have the following code, expecting that once obj2 is released obj1 is still retained, will it work? obj1 = [[Class1 alloc] init]; obj2 = [[obj1 retain] autorelease];
0
votes
2answers
64 views

Re-Assigning an Autoreleased Object

I'm building a puzzle game that has three different sizes. The images that are loaded are dependent on the size of the puzzle. For simplicity's sake I'll call them small/medium/large. When I load ...
-1
votes
3answers
44 views

Is this correct use of memory managment?

Is this correct use of memory managment? im using the autoreleasepool to release value and the string created from stringwithformat -(IBAction)changevlaue:(id)sender{ @autoreleasepool { ...

1 2 3 4 5 7