Redefinition with a different type

后端 未结 3 1613
无人及你
无人及你 2020-12-19 19:38

I\'m having trouble with this block of code:

        for (int i = 0; i < [tempInviteeArray count]; i++)
    {
        NSArray *tempContact = [tempInviteeA         


        
3条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-19 19:51

    You already declared a variable in this scope named tempContact (NSArray *tempContact...). Change the name of one of them.

提交回复
热议问题