I am trying to create a property for an instance of a viewController, like so,
@property (strong, nonatomic) DetailsViewController *videoViewController;
but I get an error saying that:
DetailsViewController
is an unknown type name
The view controller is definitely imported like so,
#import "DetailsViewController.h"
Why is this happening?