I\'m having trouble with this block of code:
for (int i = 0; i < [tempInviteeArray count]; i++) { NSArray *tempContact = [tempInviteeA
You already declared a variable in this scope named tempContact (NSArray *tempContact...). Change the name of one of them.
tempContact
NSArray *tempContact...