我有一个数组,这个数组包含问题对象,所以在这里我需要更改数组的位置
Question *que=[[Question alloc]init];
que=[myarray objectAtIndex:1];
Question *que1=[[Question alloc]init];
que1=[myarray objectAtIndex:2];
here i need to inter change objects each other some
[que1 setValue: que.name forKey:@"Name"];
[myarray relplaceObjectAtIndex:2 withObject:que1];
设置值相同的objectValues是否正确
请指导我锄头可以互换价值。
感谢提前