I have a UIScrollview embedded in a NavController, both dragged out in the iOS6 storyboard. In my scrollViewController viewDidLoad, I programatically add a UIImageView and keep a property for the image that goes into that UIImageView.
@interface MyScrollViewController () <UIScrollViewDelegate>
@property (weak, nonatomic) IBOutlet UIScrollView *scrollView;
@property (strong, nonatomic) UIImageView *imageView;
@property (strong, nonatomic) UIImage *image;
@end
Dragging out the ScrollView in the storyboard and hooking up the outlet made this a weak property by default, but what is the best practice for the other two properties?