Я пытаюсь применить функцию перетаскивания к разным имеющимся у меня изображениям, но мой код не работает, это не влияет на изображения на моем виде.
Вот мой код:
if([touch view]==imageOne){
CGPoint location=[touch locationInView:self.view];
imageOne.center=location;
return;
}
if([touch view]==imageTwo){
CGPoint location=[touch locationInView:self.view];
imageTwo.center=location;
return;
}
if([touch view]==imageThree){
CGPoint location=[touch locationInView:self.view];
imeageThree.center=location;
return;
}
if([touch view]==imageFour){
CGPoint location=[touch locationInView:self.view];
imageFour.center=location;
return;
}
if([touch view]==imageFive){
CGPoint location=[touch locationInView:self.view];
imageFive.center=location;
return;
}