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];
}
}