I'm not sure what is happening or what I changed, but all of a sudden the class that I try to reference โthat is in the project treeโ and in the folder (when I โshow in finderโ) is not readable at all ... I get a few errors in one line of code [see attached].

Please, help!!!
The problem occurs when I try to import HomeViewController.h into my MainContainerViewController
Works:
#import <UIKit/UIKit.h> #import "ViewController.h" @interface MainContainerViewController : UIViewController { ViewController *parent; NSString *FACING; IBOutlet UIView *container; IBOutlet UIView *topNav; IBOutlet UIButton *homeBTN; IBOutlet UIImageView *homeImg; IBOutlet UILabel *homeLabel; IBOutlet UIImageView *seperator1; IBOutlet UIButton *bookmarksBTN; IBOutlet UIImageView *bookmarksImg; IBOutlet UILabel *bookmarksLabel; IBOutlet UIImageView *seperator2; IBOutlet UIButton *favouritesBTN; IBOutlet UIImageView *favouritesImg; IBOutlet UILabel *favouritesLabel; IBOutlet UIImageView *seperator3; IBOutlet UIButton *notesBTN; IBOutlet UIImageView *notesImg; IBOutlet UILabel *notesLabel; IBOutlet UIImageView *seperator4; IBOutlet UIButton *fontBTN; IBOutlet UIImageView *fontImg; IBOutlet UILabel *fontLabel; IBOutlet UIImageView *seperator5; IBOutlet UIButton *settingsBTN; IBOutlet UIImageView *settingsImg; IBOutlet UILabel *settingsLabel; NSString *drawerIsAnimating; //SETTINGS (LOCAL) NSString *fontSize;
and etc.
Brocken:
#import <UIKit/UIKit.h> #import "ViewController.h" #import "HomeViewController.h" @interface MainContainerViewController : UIViewController { ViewController *parent; NSString *FACING; IBOutlet UIView *container; IBOutlet UIView *topNav; IBOutlet UIButton *homeBTN; IBOutlet UIImageView *homeImg; IBOutlet UILabel *homeLabel; IBOutlet UIImageView *seperator1; IBOutlet UIButton *bookmarksBTN; IBOutlet UIImageView *bookmarksImg; IBOutlet UILabel *bookmarksLabel; IBOutlet UIImageView *seperator2; IBOutlet UIButton *favouritesBTN; IBOutlet UIImageView *favouritesImg; IBOutlet UILabel *favouritesLabel; IBOutlet UIImageView *seperator3; IBOutlet UIButton *notesBTN; IBOutlet UIImageView *notesImg; IBOutlet UILabel *notesLabel; IBOutlet UIImageView *seperator4; IBOutlet UIButton *fontBTN; IBOutlet UIImageView *fontImg; IBOutlet UILabel *fontLabel; IBOutlet UIImageView *seperator5; IBOutlet UIButton *settingsBTN; IBOutlet UIImageView *settingsImg; IBOutlet UILabel *settingsLabel; NSString *drawerIsAnimating; //SETTINGS (LOCAL) NSString *fontSize;
and etc.
source share