How to use the "weak" in ARC?

1.1k Views Asked by At

I use:

@property(nonatomic, weak) IBOutlet UIView *videoView;

there is a warning:

Property 'videoView' requires method 'videoView' to be defined - use @synthesize, @dynamic or provide a method implementation in this class implementation

Then I try:

@synthesize videoView;

there is an error:

The current deployment target does not support automated __weak references.

And another question:

@property(nonatomic, unsafe_unretained) IBOutlet UIView *videoView;

- (void)dealloc {
    videoView = nil;
}

Can I use this way?

2

There are 2 best solutions below

2
On

What is your deployment target? you need to have at least iOS4 to have weak references, and you need to be using LLVM4 with Xcode4.4 or later to be able to just declare your @property variables and not have to provide an @synthesize.

As for the second question - what is it that you are trying to do. If you are just trying to safely set the variable to nil on dealloc, then it is okay, since you are declaring it as unsafe_unretained you don't own it so you shouldn't release it.

0
On

The current deployment target does not support automated __weak references.

The issue is that iOS 4.x doesn't support auto-zeroing weak references. This means that, when a weakly-referenced object is destroyed, the weak references continue to point to it and may cause crashes if used.

Auto-zeroing weak references are supported in iOS 5 and newer. To take advantage of them and clear the warning above, raise your minimum iOS target to 5.0, and use the 5.0 SDK.