i have this code in my .h:
@property (nonatomic, retain) NSArray *arrayData;
What is the difference between:
self.arrayData = [[NSArray alloc]initWithObjects:@"date",@"trip",nil];
and:
arrayData = [[NSArray alloc]initWithObjects:@"date",@"trip",nil];
and what should i use and how to release the arrayData variable.
Thanks