If I create a method in a custom class that happens to take more than one argument (see example) Xcode doesn't autocomplete the entire method only the first part of it. Is it because I have synthesized accessors for the name and email and it is trying to autocomplete those?
Code:
-(void) setName: (NSString *) theName andEmail: (NSString *) theEmail;