又有問題來請教板上前輩,
問題如標題所示如何判斷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的值呢?