users = [users arrayByAddingObjectsFromArray:arrayvalue];
users is NSMutableArray , and arrayvalue is also NSMutableArray , I add the value of arrayvalue to the users array, but I get the warning "incompatible pointer types assigned by NSMutableArray from NSArray ".
I searched, but could not find a solution for this.
source share