Possible Duplicate:
Differences between strong and weak in objective-c
Let's say I have a tableview that displays a model object's data. If I declare in my UITableViewController...
@property (strong, nonatomic) NSArray *modelObject;
If I pass this array to another view controller property in a segue should it be declared weak
in my destination view controller?