Like a doop I'd been declaring Instant Variables (iVar) and then @property in the interface .h file for a while now.
@interface MainGameViewController : UIViewController {
UserFactorsViewController *userFactorsViewController;
UITableView *myTableView;
}
@property (nonatomic, retain) UserFactorsViewController *userFactorsViewController;
@property (nonatomic, retain) IBOutlet UITableView *myTableView;
Under Automatic Reference Counting, should I just dispense with iVar and go all @property? Should I even have the word "retain" in property? What if I'm deploying for iOS 4.3, should I still use ARC?