I am developing exclusively for iOS 5 using ARC. Should IBOutlets to UIViews (and subclasses) be strong or weak?
IBOutlet
UIView
strong
weak
Be aware, IBOutletCollection should be @property (strong, nonatomic).
IBOutletCollection
@property (strong, nonatomic)