Hello
Would anyone be kind enough to explain to me what I'm doing wrong. I'm giving it :
#import <Foundation/Foundation.h>
@interface Product : NSObject {
NSString *imageAddress;
NSString *name;
NSString *title;
}
@property (nonatomic, retain) *imageAddress;
@property (nonatomic, retain) *name;
@property (nonatomic, retain) *product;
@end
and its giving me:
Expected specifier-qualifier-list before '*' token
for the property calls.
Thanks