I have declared a property in the header file, for example
@interface myClass {
NSArray* data;
}
@property (nonatomic, retain) NSArray* data;
when I want to synthesize it in the .m file, I press 'ESC' and expect the property 'data' will appear in the list but it doesn't ?
@implementation
@synthesize da[ESC]
It prompts 'No completions found'
any help? many thanks ~