Tagged Questions

memory deallocate function in objective-c

learn more… | top users | synonyms

16
votes
5answers
8k views

iPhone - dealloc - Release vs. nil

Wondering if someone with experience could possibly explain this a bit more. I have seen examples of... [view release]; view = nil; ....inside the (void) dealloc. What is the difference ...
16
votes
2answers
2k views

Valid use of accessors in init and dealloc methods?

I've heard now from several sources (stackoverflow.com, cocoa-dev, the documentation, blogs, etc) that it is "wrong" to use accessors and settings (foo, setFoo:) in your init and dealloc methods. I ...
13
votes
2answers
770 views

can we override alloc and dealloc in objective C?

I know that this is rarely required to override the alloc or dealloc methods,but if required is it possible in iPhone programming?
11
votes
6answers
760 views

What is your preferred coding style for dealloc in Objective-C?

I know that discussions about coding styles tend to end in disaster and endless flame wars, but that’s not what I want to reach. During the last decade I mainly saw two different coding styles for ...
10
votes
2answers
2k views

Custom dealloc using ARC (Objective-C)

I have a short question about ARC and releasing objects. In my little iPad App I have a "switch language" functionality realized with an observer. Every ViewController is registrating it self at my ...
7
votes
4answers
163 views

Who calls the dealloc method and when in Objective C?

When a custom class is created in Objective C, when and how is the dealloc method called? Is it something that I have to implement somehow in my class?
7
votes
14answers
1k views

Force explicit deletion of a Java object

I'm working on a Java server that handles a LOT of very dense traffic. The server accepts packets from clients (often many megabytes) and forwards them to other clients. The server never explicitly ...
7
votes
2answers
1k views

What explains best the difference between [myVar dealloc] and [myVar release]?

I think I know the difference, but don't know how to explain that correctly. dealloc removes the memory reserved by that variable totally and immediately. release decrements the retain counter of ...
6
votes
5answers
128 views

why compiler is defering std::list deallocation?

I have the following code to test memory deallocation using a std::list container: #include <iostream> #include <list> #include <string> #include <boost/bind.hpp> /* count ...
6
votes
2answers
568 views

UIPopoverController dealloc getting called—ARC environment

While displaying a popover controller for a second time (after dismissing it and then re-displaying it), I get the following error: Terminating app due to uncaught exception 'NSGenericException', ...
6
votes
3answers
233 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
2answers
94 views

Should -dealloc do anything other than release memory?

I inherited an iPhone app at work and I'm new to Objective-C so I don't have my bearings just yet. I encountered code similar to this: - (void) dealloc { [[StaticObject sharedObject] ...
6
votes
2answers
2k views

Objective C - Where do you dealloc global static variables?

Or, what is the opposite of +(void)initialize? Here's my situation: I have a class Unit, whose -(id)initWithName: function takes data from a global NSDictionary, which is created lazily, defined in ...
5
votes
9answers
731 views

What happens when you deallocate a pointer twice or more in C++?

int main(){ Employee *e = new Employee(); delete e; delete e; ... delete e; return 0; }
4
votes
2answers
2k views

Dealloc method disappeared from XCode 4.1 UIViewController template

I have been using XCode 3.2.4 when started developing iOS apps but now I turned to XCode 4.1 with iOS 4.3 SDK. I noticed that now dealloc method is not added automatically when I create ...
4
votes
2answers
609 views

Correct [super dealloc]

Does the order of statements in the dealloc method matter? Does the [super dealloc] need to be at the top of the method? Does it matter? Also in e.g. viewDidLoad. Should [super viewDidLoad] be at the ...
4
votes
1answer
1k views

UIViewController & UIview dealloc not getting called

I have a Navigation based view controller and in the view controller i have hidden the top navigation bar and use a custom UIView as the navigation bar. The UIView bar has a back button and I use ...
4
votes
2answers
524 views

Objective-C releasing a property declared in a category?

I have a category on an existing class that adds a property and a few methods to the class. @interface AClass (ACategory) { NSString *aProperty; } @property (nonatomic, retain) NSString ...
4
votes
2answers
4k views

iphone app with multiple views/subviews: memory is not being deallocated

I have an iPhone application that loads succesive views in a framework based on the one explained in this link (basically a main ViewController that loads/removes additional views with a displayView ...
3
votes
3answers
150 views

Best practices for releasing retained views?

Is this the correct (best?) way to release views retained in viewDidLoad, in iOS 4.x or lower? Is there anything else to consider? - (void) viewDidUnload { [super viewDidUnload]; [self ...
3
votes
2answers
792 views

Is there any problem using self.property = nil in dealloc?

I know declared property generates accessor method which is someway just syntax sugar. I found quite a lot people use self.property = nil in their dealloc method. 1) In Apple's Memory Management ...
3
votes
1answer
238 views

Calling a method on self while in dealloc

I have a dictionary of objects that need to be cleaned up before they are released. I have a method that does this for the entire dictionary. Before I release the dictionary in my -dealloc method, I ...
3
votes
4answers
654 views

Locationservice Indicator stays “on”

I have a created a small app which uses location services on the iPhone. All works well, except the fact, that sometimes, the small arrow in the info-bar stays active even if I explicitly kill the ...
3
votes
2answers
280 views

Code Redundancy… should I call viewDidUnload in dealloc

I'm not going to go into the which one is called when and why. (There is a lot on that already) Since we can't rely on viewDidUnload being called before dealloc I find myself with a lot of duplicated ...
3
votes
2answers
700 views

Is it bad form to synchronize NSUserDefaults in -(void)dealloc?

I load from NSUserDefaults in my object's init method. Can I save to NSUserDefaults in my object's dealloc method? Something exactly like: -(void)dealloc { NSUserDefaults *userDefaults = ...
3
votes
2answers
181 views

How to make sure your dealloc code is called on application termination?

According to NSObject's documentation: Important: Note that when an application terminates, objects may not be sent a dealloc message since the process's memory is automatically cleared on ...
3
votes
3answers
3k views

The correct way to declare, alloc, load, and dealloc an NSMutableArray

I declare my array in my *.h file: @interface aViewController: UIViewController { NSMutableArray *anArray; // You will need to later change this many times. } @end I alloc memory for it my ...
2
votes
1answer
100 views

Do I need to restore dealloc in xcode4.2?

I'm new to application development on the iPhone. According to the tutorial, there should be a dealloc function in ViewController.m. However it's disappeared. Is there something else I should use to ...
2
votes
3answers
55 views

Deallocating an object directly

I'm still learning objective-C and there is a rule, it's never to directly deallocate an object directly. I don't understand what that means. Can someone give me an example of this rule being ...
2
votes
1answer
262 views

Xcode and ARC debugging issue (skipping dealloc)

I have spent some time debugging a weird issue with ARC and custom dealloc functions. I'm subclassing NSOperation class I set completion block for this operation The operation is referenced by a ...
2
votes
4answers
853 views

My retainCount is increasing?

am trying here to build rss reader , the problem that when user finish read artical and press back the dealloc don't called and i got retainCount 6 & some times 7 !! i have lots of customized ...
2
votes
3answers
65 views

Why should I do [object release]; object=nil; when deallocating an object?

I would like to understand why it could be useful to do this (assuming "object" was previously allocated): [object release]; object=nil; Thx for helping, Stephane
2
votes
2answers
64 views

Releasing Unused properties in iOS

I have this property synthesized and declared in my class 'ClassA' @interface ClassA @property (nonatomic, retain) NameFieldCell* nameCell; @end I know that the rule says that the nameCell ...
2
votes
1answer
302 views

Setting delegate to nil in dealloc

In Objective-C, I understand that if an object sets itself as the delegate of another object, it should set that object's delegate to nil in its dealloc to avoid getting sent messages after it's gone. ...
2
votes
2answers
446 views

Initializing a property, dot notation

Is it a bad idea to use the dot notation to initialize retain properties to nil in my init methods? With any ordinary property like this: @property (nonatomic, retain) id foo; Say in my init ...
2
votes
1answer
107 views

What are the pros and cons of these different dealloc strategies?

I've seen several different approaches to memory management in iOS as regards releasing properties. After some debate with colleagues, the pros and cons have become muddled in my head. I'm hoping to ...
2
votes
3answers
1k views

NavigationController initWithRootViewController dealloc

I have some pretty simple code where I am using a UINavigationController and adding a rootViewController. After some processing has occurred I want to pop off the current view controller and replace ...
2
votes
3answers
133 views

vs [labelIBOutlet release]

I have been playing a bit with the memory in order to be a good memory citizen on the iPhone SDK. However I still struggle to understand the difference between "self.something" and just "something". ...
2
votes
2answers
358 views

NSTimer not stopping

I have a Class with a NSTimer *myTimer; variable. At some point I do: myTimer = [NSTimer scheduledTimerWithTimeInterval:20 target:self selector:@selector(doStuff) userInfo:nil repeats: YES]; ...
2
votes
3answers
2k views

ASIHTTPRequest dealloc and EXC_BAD_ACCESS problem

I'm using an array of ASIHTTPRequest wrappers (AsyncImageLoader) to download images for cells in a UITableView. I'm having problems handling ASIHTTPRequests lifetime. If I release them, I end up ...
2
votes
1answer
189 views

strategy for two mutually exclusive UIViews (iPhone)

Hi I have been doing spring cleaning in my app. I noticed something strange, that, when I tried to correct it, completely crashes my app. There are two "paths" in my app; either you are in the "A" ...
2
votes
2answers
252 views

any difference between these two dealloc methods?

So i'm overriding dealloc method because the object is a composite object made up of one other object. I originally had this dealloc method: -(id) dealloc; // Override to release the Rectangle ...
2
votes
1answer
684 views

iPhone Memory Management: No Need to Clean Up and Release Retained Objects on App Quit?

Is the following true? When the app is about to quit, it's not necessary to clean up the memory by calling release on all your retained objects, because the iPhone OS will reclaim the ...
2
votes
2answers
3k views

Printing Instance ID to NSLog?

In the dealloc method for a class how would I print out the ID (or some other unique identifier) for the instance being deallocated? - (void)dealloc { NSLog(@"_deallocing: ??"); [super ...
2
votes
1answer
176 views

Is there any advantage to deallocating objects owned by the UIApplicationDelegate?

Best practices aside, if I create an object that is owned by my UIApplicationDelegate class, and stays around the entire time the application runs, is there any real advantage to adding an [object ...
1
vote
0answers
46 views

“dealloc” of UIView isn't called

I have simple View controller [.h] @interface GLViewController : UIViewController <UISplitViewControllerDelegate>{ MGSplitViewController* splitController; } -(void)setSplitter: ...
1
vote
4answers
97 views

Vector as a class member

Hello I have this question: I would like to have a vector as class member. This is perhaps my question easier for you and I apologize for that. how should I declare the vector? And is this correct? ...
1
vote
2answers
144 views

iOS: “Message sent to deallocated instance” when resign first responder on a UITextView when its auto correction pop-up is shown

I have a custom toolbar with a "Done" button for the input accessary view of my text view. When this "Done" button is tapped I want to resign the text view from the first responder, so I call: ...
1
vote
0answers
36 views

UIViewController not released when added to a UINavigationController

Below is reduced bit of code to demonstrate a problem I am a having. I allocate and init a view controller. The init method is the standard Objective C init, so the view controller isn't doing ...
1
vote
3answers
130 views

Automating dealloc/viewDidUnload Objective-C

Does these two snippets accomplish the same thing? Assuming I have three IBOutlet UIButtons in my interface file called buttonOne, buttonTwo, and buttonThree: - (void)dealloc { for(UIButton* idx ...

1 2 3 4 5