I'm very newby on Objective C. I've read a lot of topics related but couldn't get solution. I'm using a NSMutableArray, and alloc and init by the following mode:
events = [[NSMutableSet alloc] init];
Is it right? In this way, I can add objects to the array without problems, but when I iterate or to read, I got SIGABRT: unrecognized selector sent to instance. Attempting several modifications, the best I could get was another exception: EXC_BAD_ADDRESS. The line I'm using to read the array is:
Event *event = [events objectAtIndex:1];
Thanks in advance.
Junior
NSMutableArraybut doNSMutableSet alloc... ?