简体   繁体   中英

error with property in objective-c in iOS

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

Here the general structure of a class interface

@interface Class : Superclass
{
    // Instance variable declarations.
    // Theirs definition could be omitted since you can declare them
    // in the implementation block or synthesize them using declared properties.
}
// Method and property declarations.
@end

Since a property provides a simple way to declare and implement an object's accessor methods (getter/setter), you need to put them in the Method and property declarations section.

I really suggest to read ocDefiningClasses doc for this.

Hope that helps.

Your code should look like this:

#import <UIKit/UIKit.h>

@interface QuoteGenViewController : UIViewController {

}

@property (retain) NSArray *myQuotes;

@end

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM