Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

19
votes
7answers
2k views

When to use -retainCount?

I would like to know in what situation did you use -retainCount so far, and eventually the problems that can happen using it. Thanks.
18
votes
3answers
624 views

Calling -retainCount Considered Harmful

Or, Why I Didn't Use retainCount On My Summer Vacation This post is intended to solicit detailed write-ups about the whys and wherefores of that infamous method, retainCount, in order to consolidate ...
6
votes
4answers
215 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, ...
6
votes
3answers
444 views

Overrelease issue with block-captured objects; retain count jumps straight from +2 to 0!

I'm confused by an occasional crash that I'm seeing, which, according to the Zombies instrument, is caused by the over-release of some dictionary values. When I look at the object history for one of ...
4
votes
2answers
1k views

How many times do I release an allocated or retained object?

I am making an iPhone game. I want to release all the object that have been allocated or retained. In the dealloc function I am releasing all such objects but then realized sometimes i end up ...
3
votes
3answers
61 views

Should I use __unsafe_unretained for temp variables?

Let's say I want to create a temporary variable, e.g.: To point to another long-living variable: __unsafe_unretained UIView *tableHeaderView = self.tableView.tableHeaderView; To point to an object ...
3
votes
1answer
67 views

Is assigning self.string = @“” on an @property that's (retain)'d proper?

A philosophical question, of sorts. Is it proper to assign a constant string to an @property that's (retained)? Or, should I do self.string = [NSString stringWithString:@""]; Is there a memory ...
3
votes
3answers
77 views

Retain/ Release count problem. Clarification needed [closed]

Possible Duplicate: check retain count As i was playing with retain, release counts, i ran into a situation, i am not able to explain. Please help me understand it better: There is a ...
3
votes
1answer
176 views

Handling memory leaks in factory methods

I am developing an objective C framework which will ship as a static library at the end. But when I integrate that library to an actual application (by adding the static library) in the leaks tools I ...
3
votes
3answers
2k views

does addSubview increment retain count?

I've tested it and it looks like it does. So my question is, does it ALWAYS increment the retain count. So everytime I do something like this: UIView *theView = [[[UIView alloc] ...
2
votes
4answers
872 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
5answers
443 views

window addSubview release problem

I was wondering something about the app delegate of my app. Why can't I release like this : -(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary ...
2
votes
1answer
107 views

UIView not being released correctly

I have a large hierarchy of view/viewcontrollers. In the main controller I have the following code where aViewController is a member of MyClass: @implementation MyClass ... - (void) viewDidLoad { ...
2
votes
4answers
245 views

Weird behaviour with retainCount

When I am logging retain count with NSArray and NSString objects, I am having uneven behavior. See the code below, NSArray *aryTemp = [NSArray arrayWithObjects:@"One",nil]; NSLog(@"Retain Count ...
2
votes
2answers
160 views

why is the retain count showing a value 2 in the below code?

NSLog(@"retain count 1 for show detail -- %d",[showDetail retainCount]); ChecklistDetail *detail = [appDelegates.arrayForChecklistDetails objectAtIndex:[sender tag]]; self.showDetail = detail; ...
2
votes
3answers
628 views

Properly release ViewController when adding subview without navigationController

Something I run into a lot is not being able to create and destroy a ViewController properly when adding the ViewController.view as a subview not on a navigation controller. for example: ...
2
votes
1answer
418 views

NSMutableArray remove object increases reference count?

I have some code that is causing memory leaks on an iOS static library. Here is an object's lifetime from Instruments: # Category Event Type Timestamp RefCt Address Size Responsible Library ...
2
votes
5answers
163 views

Obj-C Memory Management Setter Method

I am new to objective-c and ive downloaded the code from here http://apress.com/resource/bookfile/4175 and ran the Chapter 10, 10.01 CarPartsInit xcode project file. One thing i am not clear about is ...
1
vote
0answers
64 views

“dealloc” of UIView isn't called

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

Memory management while copying objects

I know that my question has already been discussed on StackOverflow but i found the answer not complete for my needs. So the question is: NSMutableArray *firstArray = [[NSMutableArray alloc] ...
1
vote
1answer
69 views

Button getting EXC_BAD_ACCESS by method with ivars

I'm neophyte in obj-c, so I cant understand some of this logic. I want to understand my code and app logic. My app is modification of easy example with animation of UIImageView: this's .h (in standart ...
1
vote
1answer
121 views

NSTimer retain count increases, why?

I have a problem regarding NSTimer. See the following code: NSTimeInterval timeInterval = 1.0f; SEL selector = @selector(executeDataRefresh); NSMethodSignature *methodSignature = [[ExecuteDataRefesh ...
1
vote
1answer
141 views

check retain count

I am doing this : UIImageView *backgroundImage = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"mainback.jpg"]]; [self.view addSubview:backgroundImage]; NSLog(@" retain count1 : %d " , ...
1
vote
2answers
67 views

Issue with NSMutableArray visibility / retain

Alright so I am a little new to the NSMutableArray class and I think I am missing something obvious. I have an object pass a NSMutable Array to my window controller like so in my.m: summaryWindow = ...
1
vote
1answer
102 views

Another “Retain, then Release” question

being a Cocoa/Obj-C newbie I am going through the "Cocoa Programming for Mac OS X" book by Aaron Hillegass and - leaving apart the fact that now we have also the chance to use GC to avoid all this ...
1
vote
2answers
95 views

NSMutableArray getting released?

I have a NSMutableArray whose property is (nonatomic, retain), and it's getting released for some reason, here's the code when I assign it (tableData is the NSMutableArray): tableData = ...
1
vote
2answers
93 views

Objective-c cross retain problem

How do you get around the cross retain situation when two objects retain each other ? consider this class structure: Container.h @interface Container : NSObject { NSObject *child; } @property ...
1
vote
4answers
92 views

Can we release some memory in Objective-c that a variable does not own but points to?

I have some code like this: NSObject *var1 = [[NSObject alloc] init]; NSObject *var2 = var1; [var2 release]; var1 = nil; Is this correct or is this a memory leak? As far as I know only var1 can ...
1
vote
2answers
1k views

Error: *** -[CALayer retain]: message sent to deallocated instance 0xdaa54d0

I am working on simple iphone application. where i am working on two views. I pushed the other view controller first and when i am removing the current view as to go back to the old view controller ...
1
vote
2answers
70 views

Same reference count after [obj release]

Please consider the codeNSMutableString *str=[[NSMutableString alloc] initWithString:@"hello"]; NSLog(@"reference count is %i",[str retainCount]); [str release]; NSLog(@"reference count is %i",[str ...
1
vote
1answer
416 views

Why is the retain count so high? Memory Management

I have been going back through my app trying to handle all the memory problems and reading up on memory management. I began using [object retainCount] to trace my memory allocation. Is this to be ...
1
vote
2answers
361 views

view based application - viewcontroller retainCount after [window addSubview:viewController.view];

i have an view based application and when i checked if the dealloc method was workin, i saw that doesnt...debug and debug, then using retainCount, i discover that my viewcontroller retaincount gets ...
1
vote
3answers
360 views

Should I release self.view?

I have a question regarding to self.view in a UIViewController. First, in my app, everything is created programmatically. And normally I create self.view in the loadView method: self.view = [[UIView ...
0
votes
2answers
28 views

Making sense of retainCounts while using decodeObjectForKey:

I have a strange situation which I hope someone can shed some light on. I'm implementing the NSCoding protocol in a custom object, and I'm running into memory leaks in initWithCoder:. I have something ...
0
votes
3answers
37 views

Memory management with NSMutableDictionary on iOS

I'm going to manually manage the memory of the NSMutableDictionay, without using autorelease. And every object in the mutableDictonary is a NSArray, every time I add one array in the ...
0
votes
4answers
64 views

Large retain count with a recent created object. Objective-C

I'm getting an strange case of excessive retain counts for a view controller that I'm loading when a button is pushed. This is the code: -(IBAction)new { if (!viewSpace) viewSpace = ...
0
votes
2answers
81 views

How does performSelector:withObject:afterDelay: work?

I have found that after calling [self performSelector:@selector(method1:) withObject:self.tableView afterDelay:3]; that self.tableView's retainCount changes? Why? Thank you very much!
0
votes
1answer
32 views

Some doubts about memory management in ios applicato?

What is the need for retain an NSObject in ios application? What is the difference between retainCount==1,retainCount=2,.....etc? How properties can handle retaining and releasing instance variable? ...
0
votes
1answer
84 views

copy, retain and reference count in NSString

What does actually mean when I use copy, retain with NSString properties and assign it to local variables? @interface SomeClass : NSObject { NSString *name; NSString *name2; } @property ...
0
votes
1answer
57 views

Dismiss modal view cause CALayer retainCount sent to deallocated

In my app, I use method [self DismissModalView...] to dismiss a search view, everything was ok in iOS 3 and iOS 4, but now I upgraded to XCode 4.2 and SDK 5, this method runs ok againts iOS 5 but when ...
0
votes
1answer
37 views

How to handle retain count for controllers saved in AppDelegate?

MyAppDelegate is doing some background stuff and needs to refresh several views during this time, so I am saving a reference to each controller that gets created. @interface MyAppDelegate : NSObject ...
0
votes
1answer
246 views

What's happened with retainCount in Xcode 4.2?

I noticed that after updating my Xcode to 4.2 retainCount is always equals to -1. I don't use ARC in my project and I even tried to create new projects and switched ARC option to off in project ...
0
votes
2answers
37 views

Effect on object before and after retain & copy

I have two questions: I have an object, call it X. When I assign retain to object X ([x retain]) and then change data in the object X, what will be the retain count of X? I have two objects, A & ...
0
votes
2answers
26 views

release returned object or do i have to use autorelease

sample code: - (Foo*)createFoo { Foo *foo = [[Foo alloc] init]; return foo; } - (void)someOtherMethod { Foo *foo; foo = [self createFoo]; //retain count 1 [foo release]; //retain ...
0
votes
2answers
125 views

How to find the Retain count?

Please explain me the below code of lines, I am just confused.., Nsstring *a; Nsstring *b; a = [b retain]; what is the retain count of a & b. a = [b copy]; what is the retain count of a ...
0
votes
3answers
131 views

retain/release issues

I just analyzed my iPhone project, and was very confused by the result XCode(4) gave me. For example, in one of my view controllers I have this code: @property (nonatomic, retain) NSArray* menuItems; ...
0
votes
1answer
78 views

Cannot release UIView in cocos2d

I've got this sample code I got from somewhere around the web. My .h file looks like: @interface PopupWindowString : CCNode <UITextFieldDelegate> { UIView *landscapeView; UITextField ...
0
votes
3answers
338 views

How to check the retain count while debugging

Does anybody know how can I check the retain count of an object while in debug mode? I have tried to add an expression [objInstance retainCount] but it did not work. I have also tried the print object ...
0
votes
2answers
82 views

ios potential leak how to solve?

I've analyzed my project: and this is the result: what means and how can I solve this? thanks in advance
0
votes
1answer
76 views

Releasing objects: [obj release]; is not enough, need [obj release], obj = nil;?

Here I got some ugly code: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy"]; NSDate *date = [NSDate date]; NSString *textWithYear = [NSString ...

1 2