I get the following warning/error in xcode:
Autosynthesized property 'view' will use synthesized instance variable '_view', not existing instance variable 'view'
when I was trying to redefine/override the class of the view
property on my NSViewController.
@interface DABListViewController : NSViewController
@property (nonatomic, strong) DABListViewControllerView *view;
@end
Also, the view doesn't seem to appear. This question looks similar but didn't work.