I have started new iOS project and have added only one property in ViewControler header file. but it gives me error:
expected specifier-qualifier-list before 'property'
here is the code:
#import <UIKit/UIKit.h>
@interface QuoteGenViewController : UIViewController {
@property (retain) NSArray *myQuotes;
}
@end