users = [users arrayByAddingObjectsFromArray:arrayvalue];
users is a NSMutableArray and arrayvalue is also a NSMutableArray, I am adding value of arrayvalue to the users array but I am getting a warning "incompatible pointer types assigning to NSMutableArray from NSArray ".
I hav searched, but was unable to find a solution for this.