Xcode showed this error: "Unknown type name"
I will explain: My StoriesViewController.h:
#import <UIKit/UIKit.h> #import "Stories.h" @interface StoriesViewController : UIViewController <UITextViewDelegate> @property (strong) Stories *story; //Here it goes- "Unknown type name `Stories`" @property (weak) IBOutlet UITextView *storyView; @end
In my Stories.h:
Again, in blue.
Thanks in advance.
EDIT:
In my ViewController.h:
#import <UIKit/UIKit.h> #import "Stories.h" #import "StoriesViewController.h" #import "StoriesPickerViewController.h" #import <QuartzCore/QuartzCore.h> @interface ViewController : UIViewController <UITextFieldDelegate, UIAlertViewDelegate> { } @end
NB @class causes many problems with ARC.
I removed useless links to ViewController.h, worked. SOLVE!
source share