In Cocoa (and other frameworks that derive from NeXTSTEP), dealloc is the instance method responsible for tearing down an object. It should release the object's references to its ivars and then call up to the superclass's implementation.
1
vote
1answer
47 views
Unwanted variable release (iOS)
I have UIViewController with strong DataController containing and managing a list of items (itemsList). In the initialization method of the latter, I read items from a file, get additional information ...
0
votes
4answers
114 views
UIViewController -dealloc method not called
I am working with Automatic Reference Counting.
I have a custom UIViewController subclass and whenever I call -presentViewController: animated:completion: or remove its view from the superview I ...
0
votes
2answers
31 views
Expected identifier or '(' for void dealloc
I am getting a "expected identifier or'(' message in Xcode. This comes after (void)dealloc;
I am not sure how to fix this or why it is coming up. If someone could tell me how to fix this, I would ...
0
votes
1answer
34 views
Write to file in dealloc method
I'm writing an iOS app where my main 'UIViewController' creates a model (subclass of NSObject). When I am done using the model I want the model to write some data to file. Would it be ...
0
votes
0answers
14 views
How to get rid of an UILabel
In my LoginView I create an UILabel that is at the bottom; width is screensize.
This label is created when the user hits a button to use my application in testmode.
The button also pushes my first ...
0
votes
1answer
30 views
Should I release simple NSString in dealloc
I have in .h:
@property (nonatomic,retain) NSString *myString;
In .m:
@synthesize myString;
myString =@"Test";
Do I have to release it in dealloc?
Because sometimes my app crashes due to ...
0
votes
4answers
89 views
Dealloc an NSObject using ARC
I have multiple view controllers with a strong reference to a subclass of NSObject. Each view controller allows the user to mutate this object in some fashion and then passes the object to the next ...
0
votes
1answer
84 views
AXUIElementRef and ARC - Deallocated instances and __bridge vs __bridge_transfer
I get this error on an NSMutableArray:
-[Not A Type release]: message sent to deallocated instance 0x1006e29c0
It happens on this line:
[_array removeAllObjects];
Now, I understand what ...
0
votes
2answers
115 views
nsobject dealloc never called
I create an object in each iteration of a for loop. However the dealloc function is never called. Is it not supposed to be released at each iteration? I am using ARC and I have NSZombies deactivated. ...
1
vote
2answers
70 views
Check retain count in dealloc method
Recently I was facing an issue where I was navigating from a screen A to screen B. when I was coming back from screen B to screen A, the Live Bytes in the application were not returning to the initial ...
7
votes
3answers
162 views
Can garbage Collector deallocate singleton instance? (and why or how to avoid it)
In Android I have singleton class but I am not sure if the garbage Collector can deallocate it.
If garbage Collector will deallocate my singleton class how can avoid it from deallocation?
1
vote
4answers
67 views
Heap corruption when making two bytes into a short. C++
I am developing a program in C++ and encounter this error when I run this code:
short readshort() {
short val=0;
(&val)[1]=data.front(); data.pop_front();
(&val)[0]=data.front(); ...
1
vote
2answers
66 views
How to use dealloc when dealing with auto-synthesized properties?
I'm relatively new to iOS development so please excuse me if this is a retarded question. I've read this but am still a bit confused.
I'm not using ARC. (Yes yes, I know I should but I don't at this ...
1
vote
1answer
38 views
Is it necessary to relaese any control or var in deal loc method
I have view control with five button i am setting there properties also is it necessary to release them in dealloc thanks
@interface MainViewController : UIViewController{
IBOutlet ...
-2
votes
1answer
41 views
how to mange memory with properties
I am new to iOS so trying to understand memory management.
I have a .h File which contains a property and i want to use that var in some function.
@property (nonatomic, retain) NSMutableArray ...
2
votes
4answers
126 views
Hooking end of ARC dealloc
Given the following simple implementation:
@implementation RTUDeallocLogger
-(void)dealloc
{
NSLog(@"deallocated");
}
@end
we run the following code under ARC:
@implementation RTURunner
{
...
0
votes
2answers
108 views
Memory not releasing when calling dealloc on NSFetchedResultsController
I am trying to debug a memory leak within my code (2.5mb) and it seems to be pointing to _prepareResultsFromResultSet within NSFetchedResultsController. I have 2 viewControllers (A & B), ...
0
votes
0answers
88 views
How to access CoreData Entities in different ViewControllers? The pointer seems to be retained upon dealloc
I am currently trying to figure out the best way to access entities in different UIViewControllers. I am currently using the following which seems to have the least live bytes:
View Controller 1 ...
-1
votes
1answer
50 views
Use of undeclared identifier 'initWithNibName' [closed]
I don't know what's wrong in the following .m file.
The mistake is in the title. I don't know how to make the mistake away. At the '@end' comes "Missing '@end'". But I think when the first problem is ...
0
votes
2answers
188 views
overriding the dealloc method in objective-c
Can someone tell me what would actually happen if you override the dealloc method in Objective-C? As in would it crash or would it just start leaking memory all over the place. I've been wondering ...
0
votes
1answer
61 views
Rogue Zombie on dealloc of ViewController
In Xcode, start a new master-detail project. Call it 'Test'.
Add a new 'File' to it. Make it a UIViewController file with XIB. Call it TestViewController.
Modify your MasterViewController code in ...
1
vote
2answers
239 views
iOS memory management - clarifications
I know that alloc and retain will increase the reference count of an object. Is there any other different method that actually increment the reference count? And when/how does dealloc is called?
4
votes
2answers
295 views
Cocos2d touch dispatcher causing object retain
I have a problem with cocos2d. I made a class which receives touches. Class is a subclass of CCLayer and init looks like so:
- (id)initWithFrame:(CGRect)frameSize
{
self = [super init];
if ...
0
votes
3answers
160 views
UIViewControllers And ARC
So after much deliberation and a bit of frustration at spending time trying to search for memory management issues i did some research and finally succumbed to changing to ARC. And it was relatively ...
1
vote
2answers
473 views
An Objective-C message was sent to a deallocated object (zombie) at address: 0x75d52a0
I am relatively new to iOS development so appreciate your help in finding out the root cause for the error that I encountered.
I tried to debug the error using Instruments (i.e. Allocations-Zombie ...
0
votes
0answers
45 views
UIImageView subclass as a subview of TableViewCell Zombie
I have a subclassed UIImageView called STCIcon that is a subview of a tableView cell.
I am using FMMoveTable to have hold and drag sorting. Somewhat randomly and seemingly only on the simulator, ...
3
votes
0answers
144 views
Climbing CFData memory usage when using Core Image filters
I'm having a problem with too much allocated memory. My app alloc mem reaches up to 100MB!
And yes... i'm using ARC. most of memory allocated is by CFData(as i understand it is CoreImage filters). ...
0
votes
2answers
574 views
iOS 6: removing a view controller from notification center
In an iOS 6 app I have some view controllers that are added as observers with the default notification center. They are added in the viewDidLoad method because I want the controllers to receive the ...
0
votes
0answers
49 views
Delalloc Call before DidFinishLoading in AppDelegate Class
In my application when I run it with xcode 4.2 it working perfectly but when I run it with xcode 4.5 then I find a critical error there. I found that Dealloc method of ApplicationDelegate call First, ...
0
votes
1answer
53 views
Iphone: Does a custom made UIView needs a dealloc
I have a custom made uiview class, and i have a dealloc with other releasing call within it.
In this custom uiview, I have 3 outlet of controls : buttons, textview etc. When the custom uiview ...
-1
votes
1answer
200 views
NSMutableArray released twice by release
In didFinishLaunchingWithOptions, the first code is:
NSMutableArray *k = [[NSMutableArray alloc] initWithCapacity:10];
[k release];
(I reduced it to this case after much debugging) and I'm getting
...
1
vote
1answer
93 views
Difference between self.variableName and _variableName
I have code like this:
MyClass.h
@interface MyClass : CCLayer {
}
@property (nonatomic, retain) CCSprite *spriteName; //retain count = 1
@property (nonatomic, retain) CustomClass *customVariable; ...
0
votes
2answers
149 views
how to properly alloc/dealloc this pointer? objective-c
*beginner iOS programmer, please explain with patience
suppose i have 2 classes - Foo, Bar
in class Bar, i have a pointer to an instance of Foo, which i set during init. (and because i dont know how ...
1
vote
3answers
105 views
Is there a way to rewrite dealloc in Automated Reference Counting? Why doesn't it work?
I am a second year Computer Programming student who is working on a program in Objective C. (Xcode, if it matters). Right now, we are working on animation and moving animated objects across the ...
0
votes
1answer
94 views
Automatic Reference Counting (ARC). Can ARC handle free-ing a plain ole c-array?
I am getting up to speed on using ARC for my iOS app development. Occasionally a plain ole c-array of plain old c-structs is all I need to get the job done. Prior to ARC I would just add free() to my ...
0
votes
4answers
59 views
How to see an object that is receiving messages after being deallocated
I am getting below error, but want more specific information like line number, class_name, method_name etc.
-[__NSArrayM release]: message sent to deallocated instance 0x72ab440
In other words, ...
2
votes
2answers
864 views
Are the objective C selectors dealloc and release in still in use as of iOS 6?
I'm new iOS development. Do I still need to release my properties in dealloc in iOS 6?
If not, how are my retained properties released? Is it done automatically?
Need some guidance on this. Sorry if ...
3
votes
1answer
238 views
iOS: How can I destroy a Singleton in ARC? Should I?
I have a singleton class that accumulates data until that data is written to my database (if you want to know why I'm implementing things this way, see here). After saving the data, I would like to ...
1
vote
0answers
104 views
When does the View controller Deleted in ARC
I am Working on a ARC based project. I got two ViewControllers. In the First ViewController
I got a button, on pressing that button I am pushing the new ViewController.
I am doing it as follows,
...
0
votes
1answer
276 views
Dealloc never called, though object is freed
I have a Cocos2d game, and am having trouble with the dealloc function (and not on exit either) on one of my game layers (derived from CCLayer). The layer (PuzzleLayer) and it's parent scene is ...
0
votes
1answer
85 views
memory keep on increasing when a opening a same uiviewcontroller again in iphone
I have two uiviewcontroller and i am releasing all the resources in dealloc and setting them to nil in didunload but still when i came across to both viewcontrollers the memory keep on increasing.
I ...
0
votes
1answer
42 views
Dealloc gives warnings
I am practicing making a simple app that switches scenes with a scene controller (state manager) class.
I created my scene:
+(CCScene *) scene
{
CCScene *scene = [CCScene node];
GameMenu ...
2
votes
2answers
437 views
View controller dealloc not called when using NSNotificationCenter code block method with ARC
When I use -addObserverForName: object: queue: usingBlock: for NSNotificationCenter in the -viewDidLoad: method of my view controller, the -dealloc method ends up not being called.
(When I remove ...
2
votes
1answer
143 views
Cocos2D 2.0 ARC enabled uncontrolled deallocs
I recently migrated an existing Cocos2D project from version 0.8 to 2.0 & enabled ARC.
The way I did it is by Apple's empty application template & then adding the code from the Cocos2d 2.x ...
1
vote
1answer
457 views
Dealloc called after popViewControllerAnimated without calling viewDidUnload
Project with ARC. Dealloc method is called immediately after the call popViewControllerAnimated viewDidUnload method with no cause. Because of this, I have many different about this type of crash
...
2
votes
4answers
142 views
Why can I release an ivar after [super dealloc] without segfaulting?
It seems that in Objective-C, the method that is responsibile for memory allocation (like malloc() in C), is -[NSObject alloc]. What about freeing that memory? Is that done by -[NSObject dealloc]? Is ...
2
votes
1answer
114 views
Memory issue with iphone app development
I am developing an iphone application which uses very simple interface and does database handling at the backend. I am enabling ARC OPTION as well.
My viewDidLoad method is as follows:
- ...
2
votes
1answer
580 views
viewController's dealloc don't be called when called navigationController popViewControllerAnimated
I have a MyViewController, it's based on UIViewController, and I used it like the following code:
MyViewController *nextViewController = [[MyViewController alloc] init];
[self.navigationController ...
0
votes
1answer
134 views
Memory issue in iPhone app
Please help, I am really struggling with the memory leak issue. Here is my code
+ (void) getInitialDataToDisplay:(NSString *)dbPath {
AppDelegate *appDelegate = (AppDelegate *)[[UIApplication ...
0
votes
2answers
195 views
Objective-C Property assignment without @property
I'm currently developing an iOS application which was started by another developer.
Usually, I make a property for every instance variable (assign for int, bool etc. / retain for all classes).
So ...



