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