So I have thus piece of code
Code:
#import <UIKit/UIKit.h>
@class FirstViewController;
@interface TutorialAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
@FirstViewController *firstView;
}
@property (nonatomic, retain) IBOutlet UIWindow *window;
@property (nonatomic, retain) FirstViewController *firstView;
@end
With this error:
"Expected specifier -qualifier- list before '@' token"
On the line that says
Code:
@FirstViewController *firstView;
Any help would be much appreciated.