http://imgur.com/fZDiu7F
目前我的想法是希望用滑鼠畫出黃色線
如果黃色超出了紅色路徑的範圍
那會跳出警告的視窗
目前用這種寫法:
if(36<currentPoint.x<=50) { //第一段路
if (105<currentPoint.y<107) {
...//其他的if else來控制其他段路
}
else {
UIAlertView *alert =[[UIAlertView alloc]
initWithTitle:@"Wrong way!"
message:@"Finger has been lifted off the
screen."
delegate:nil cancelButtonTitle:@"OK"
otherButtonTitles: nil];
[alert show];
drawImage.image=nil;
StartGame.hidden=NO;
[Timer invalidate];
alertPressCount++;
}
}
不過一直不成功
而且始終覺得這個方法不是很好
有大大可以提供更好的寫法嗎?
檔案在這:
https://drive.google.com/file/d/0B-4eybT3ZkTaeVJ0NldZVVRXa1E/view