Possible Duplicate:
@property @synthesize
Hi i found in so many apps after creating the @property
we have to declare @synthsize
also but i would like to know the difference between
NSArray *_failedBankInfos;
@property (nonatomic, retain) NSArray *failedBankInfos;
@synthesize failedBankInfos = _failedBankInfos;
and
@property (nonatomic, retain) NSArray *_failedBankInfos;
@synthesize _failedBankInfos;
can anyone explain this please.