我正在尝试触摸和移动 nsarray 内的对象。我不知道下一步该做什么。这是显示我正在尝试做的代码的代码(显然不起作用,但给出了一个想法)。也许有人可以指导我。
cardKeys = [[NSArray alloc] initWithObjects:
@"a",
@"b",
@"c",
@"d",
nil];
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
{
{
UITouch *myTouch = [touches anyObject];
startPoint = [myTouch locationInView:self.view];
[cardKeys:startPoint.x:startPoint.y];
}
}