I don't understand why if I write these code
icons = [[NSArray alloc] initWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
the app crashed. But then I replaced by these code
icons = [NSArray alloc] arrayWithObjects:
@"appointment",
@"work",
@"anniversary",
@"me",
nil];
and the app did't crash. But there is the same affect between these methods ! I don't know why ? Can u help me ?
retaincall somewhere. We'd need more code to be sure, of course.