Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

31
votes
6answers
8k views

What happens if I don't retain IBOutlet?

If I do this: @interface RegisterController : UIViewController <UITextFieldDelegate> { IBOutlet UITextField *usernameField; } instead of this: @interface RegisterController : ...
22
votes
6answers
24k views

objective c 101 (retain vs assign) NSString

A 101 question Let's say i'm making database of cars and each car object is defined as: #import <UIKit/UIKit.h> @interface Car:NSObject{ NSString *name; } @property(nonatomic, retain) ...
15
votes
3answers
1k views

Fix warning “Capturing [an object] strongly in this block is likely to lead to a retain cycle” in ARC-enabled code

In ARC enabled code, how to fix a warning about a potential retain cycle, when using a block-based API? The warning: Capturing 'request' strongly in this block is likely to lead to a retain cycle ...
12
votes
7answers
4k views

sent to deallocated instance

Whenever I push a view controller onto my stack, then pop it off, I get this error: *** -[CALayer retainCount]: message sent to deallocated instance <memory address> It seems to happen right ...
11
votes
3answers
21k views

Objective C release, autorelease, and data types

I'm new to memory managed code but I get the idea pretty well. On taking my app through the leaks tool in XCode, I noticed I only had to clean up my custom objects, but not dynamically created arrays ...
10
votes
2answers
678 views

Objective-C: Why retain a static variable?

Isn't it unnecessary to retain a static variable since it stays around for the duration of the program, no matter if you release it? See this code: ...
10
votes
2answers
2k views

iOS 4 blocks and retain counts

I'm just getting started with blocks and Grand Central Dispatch. I've been told (and read in the Apple Documentation) that any object referenced from within a block gets retained. For instance: ^{ ...
8
votes
4answers
2k views

What do you think about this code in Objective-C that iterates thorugh retain count and call release every iteration?

I'm still trying to understand this piece of code that I found in a project I'm working on where the guy that created it left the company before I could ask. This is the code: -(void)releaseMySelf{ ...
8
votes
1answer
6k views

property “assign” and “retain” for delegate

For iOS developer, delegate is used almost everywhere. And seem like that we need use "assign" instead of retain for delegate like this @property(assign) id delegate; The reason is to avoid ...
8
votes
3answers
6k views

What increases an object's retain count?

Here is code I am referring to. // Person.h @interface Person : NSObject { NSString *firstName; NSString *lastName; } @end // Person.m @implementation Person - (id)init { if (![super ...
7
votes
4answers
1k views

IBOutlet instances are (null) after loading from NIB

I am working on an iPhone app and am getting (null) references to IBOutlet fields in my controller. I have a UIViewController subclass that is set as the File's Owner in my XIB. I have a set of UI ...
6
votes
3answers
620 views

Non-retaining array for delegates

In a Cocoa Touch project, I need a specific class to have not only a single delegate object, but many of them. It looks like I should create an NSArray for these delegates; the problem is that ...
6
votes
4answers
859 views

alloc + init with synthesized property - does it cause retain count to increase by two?

I've seeen the following snippet quite a bit: In the header: SomeClass *bla; @property(nonatomic,retain) SomeClass *bla; In the implementation file: @synthesize bla; and then self.bla = ...
5
votes
5answers
221 views

Is there a way to “find mystery retains” …?

Recently I was repairing someone's code. There was a big class that would not dealloc. You'd have to hit it with 5 or 6 releases to get it to dealloc. I carefully looked through the big class and ...
5
votes
3answers
1k views

Retain, alloc, properties … Topic to make your Obj-c life easier !

The more I code, the more I get lost ... so I decided to create a topic entirely dedicated to the memory management for me (and others) not to waste hours understanding obj-c basics ... I'll update it ...
4
votes
6answers
1k views

How is retain setter implemented with @synthesize?

I have the following in the header: @property (nonatomic, retain) UIView *overlay; And in the implementation: @synthesize overlay; Then: UIView *tempOverlay = [[UIView alloc] ...
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 ...
4
votes
2answers
365 views

When to release/retain an object that is passed to a secondary Thread?

I am passing an object to a secondary thread using the following code: (void)login:(id)sender { platformMsgs_LoginRequest *loginRequest = [[[platformMsgs_LoginRequest alloc] init] autorelease]; ...
4
votes
5answers
4k views

Release a retain UIImage property loaded via imageNamed?

In my class object i've defined a (nonatomic, retain) property for UIImage. I assigned this property with an image loaded via [UIImage imageNamed:@"file.png"]; If at some point I want to reassign ...
4
votes
3answers
2k views

NSZombies are eating my app's brain!

I've got a retain/release problem. My View is pretty complicated so I've set NSZombieEnabled to YES and am trying to locate which, exactly, object is causing me grief. To speed this process along I'm ...
3
votes
1answer
91 views

Should CoreData inverse relationships be represented as retained properties?

I have two entities (Session and User). Session entity has loggedInUser relationship to User entity. And the User entity has session inverse relationship to Session entity. Xcode generates properties ...
3
votes
2answers
832 views

@property definitions with ARC: strong or retain?

Using Xcode 4.2 and ARC, I notice that the auto-generated code for an NSManagedObject still reads like this for properties: @property (nonatomic, retain) NSString * someString; 1) Shouldn't retain ...
3
votes
2answers
520 views

Android Viewholder for ViewPager

Hello I am using a ViewPager but I would now like to retain states, instead of having cells regenerated. I notice viewpager is very similar to a custom adapter for listviews, and they function ...
3
votes
4answers
115 views

Objective-C Beginner (release) question

I'm just starting to learn Objective-C. I read the Cocoa Become an XCoder book, and I think I learned the basics. Now, I'm following an online tutorial where I encountered this bit of code: ...
3
votes
1answer
1k views

Difference between retain and copy?

What exqctly is the difference between retain and copy? what is its significance on reference counting? I know that when an object is allocated using alloc/retain, reference count goes up by one. so ...
3
votes
3answers
976 views

PHP - Best practice to retain form values across postback

Complete PHP novice here, almost all my previous work was in ASP.NET. I am now working on a PHP project, and the first rock I have stumbled upon is retaining values across postback. For the most ...
3
votes
2answers
330 views

How can I get an NSNumber without performing alloc on it, so it will respond to initWithInt?

My understanding is that a 'convenience' method such as [nsnumber initWithInt] should create a copy of the indicated class, initialized to the desired value. minutesLeft=[NSNumber ...
3
votes
2answers
430 views

Handling an external screen on the iPad

Ok, I think its possible I've misunderstood the correct way to implement an external screen on the iPad and it is causing me a lot of headaches. Since this is a long post, what I'm trying to do is ...
3
votes
1answer
551 views

When does setting an Objective-C property double retain?

Given the following code @interface MyClass { SomeObject* o; } @property (nonatomic, retain) SomeObject* o; @implementation MyClass @synthesize o; - (id)initWithSomeObject:(SomeObject*)s { ...
3
votes
4answers
1k views

Checking for a valid delegate object before sending it a message

I am trying to implement the delegate Pattern in Objective-C, however I am experiencing a Bad Access exception when invoking the delegate sometimes. It seems this is caused by the delegate being ...
2
votes
1answer
33 views

javascript retaining the value of hidden input variables even after refreshing page ( F5 or clicking refresh button of browser)

I am facing a weird problem, may be some of you have already faced it. Here is the issue, I have a hidden input field in my html ( using perl /mason ), <input type='hidden' id='noB' name='noB' ...
2
votes
1answer
65 views

On retain and copy

I thought I had understand the difference between retain and copy. But when I met the code below I became confused again. These are the code: ViewController.h: #import <UIKit/UIKit.h> ...
2
votes
2answers
58 views

Retained property being deallocated

I am fairly new with Objective-C memory management and although I thought I understood it, I have a problem that I cannot manage to solve. I have this property: @property (nonatomic, retain) NSDate ...
2
votes
3answers
79 views

What is difference between initilizing an NSString simply and with retain?

I want to know that difference between following two lines name1 = [[NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement,1)] retain]; name1 = [NSString ...
2
votes
5answers
150 views

Objective-C and retain/release of returned objects

I am new to Objective-C, so this might be a dumb question. I cannot help but see the similarities between ObjC and Microsoft's COM with respect to memory management (AddRef/Release vs ...
2
votes
4answers
65 views

Clarification on when to release pointers after allocating in objective-c

In my last question (here), I had an issue where I was getting an EXC_BAD_ACCESS because I was releasing the variable I had just allocated: NSMutableArray* s = [[NSMutableArray alloc] init]; stack = ...
2
votes
4answers
78 views

Memory Allocation Question

I have a string which I am updating constantly (~33 times a second). It is used over and over and over again and is omnipresent in a loop I have going. This is the loop: - (void)add{ int r = ...
2
votes
2answers
125 views

xcode wont retain an int?

I know xcode doesnt retain an int, but my code wont seem to undate the number at all from a function. I have in GameController.h int charMainTouch; and @property (assign) int charMainTouch; and ...
2
votes
1answer
42 views

Arrays as properties - retain, etc

I'm beginning to get my head round all the memory management stuff, but I'm a bit puzzled by the use of properties with arrays. If I declare the property in the interface like so - @property ...
2
votes
1answer
52 views

Difference between retain

what's the difference between these retains?: @property (nonatomic, retain) NSString *A_StringToRetain; and NSString *B_StringToRetain; B_StringToRetain = [[MyClass GetStringValue] retain]; ...
2
votes
3answers
301 views

iOS: Retaining a shared instance

I am using a shared instance of a singleton class in a function, do I need to do a retain on the object? A few examples I have seen do this: AVAudioSession *session = [[ AVAudioSession sharedInstance] ...
2
votes
3answers
432 views

retain Count NSArray vs. NSMutableArray

Short Question with a code example: NSLog(@"%i", [[[NSArray alloc] init] retainCount]); NSLog(@"%i", [[[NSMutableArray alloc] init] retainCount]); Output: 2 1 Why is the retainCount from the ...
2
votes
2answers
56 views

What's the added benefit of retain/autoreleasing an already retained property?

At a project I'm currently working on I'm working through code of my predecessors. One of the things I encounter here and there are getters like this: - (NSDictionary *)userInfo { return ...
2
votes
1answer
280 views

NSNumber not being retained?

I have a variable lastPostsGrabbedCounter, an NSNumber, that is defined below. .h NSNumber *lastPostsGrabbedCounter; @property (nonatomic, retain) NSNumber *lastPostsGrabbedCounter; .m @synthesize ...
2
votes
2answers
403 views

Release or set to nil retained members

Is it better to set my retained member vars to nil or to release them when I am cleaning up? Setting a retained var to nil seems a safer way to release an object without risking a double release call ...
2
votes
4answers
296 views

holding the value of a variable in c#.net winforms

i have a Form which has a button, on the button click event, a variable locklogin is increased by 1 when locklogin =3 , then the form button gets disabled and the form needs to be closed. on closing ...
2
votes
3answers
906 views

How to use properties in Objective-C?

When to use the nonatomic, retain, readonly and readwrite properties in Objective-C? For example: @property(nonatomic, retain) NSObject *myObject; If I use nonatomic and retain, does this mean the ...
2
votes
2answers
107 views

NSMutable array- Asign , retain question

hi i just need some info about how to assign, retain objects for example- if we have two viewcontrollers and needed to pass an array data from viewcontrlr 1 to viewContrl 2 how can we send the ...
2
votes
3answers
193 views

Why NSString variable needs to be retained?

I have the following code in my .h file: @interface Utils : NSObject { NSString *dPath; } @property(nonatomic, retain) NSString *dPath; And in my .m file: NSArray *documentPaths = ...
2
votes
4answers
316 views

Basic retain, autorelease question

retain and autorelease questions. // A UIView *temp = [[UIView alloc] init]; myView = temp; [temp release]; // B myView = [[UIView alloc] init]; Do the two codes have no differences? NSString ...

1 2 3 4 5 6