I see this example in the beginning of iOS development ,the chapter of picker view. And i don't understand why it use a strong reference here.
@property (strong, nonatomic) IBOutlet UIDatePicker *datePicker;
We always use weak property to reference the UI components.
Their superview will hold an array of subview.(hold the array of subviews, also hold each subview, Am I right?).
Therefore, I think we can just use a weak reference to reference the picker which is an subview of the main view. And the main view will hold
the picker.