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?
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.