又有问题来请教板上前辈,
问题如标题所示如何判断pan手势往左或往右
目前的想法是宣告了location物件取得座标x,
CGPoint location = [sender locationInView:self.view];
[sender setTranslation:location inView:self.view];
if(loaction.x - currentlocaton.x == -1)
{
NSlog("left);
}else{
NSlog("right);
}
不知道这解法是否正确,
还有想请教前辈们如何取得判断式里currentlocaton.x的值呢?