[问题]跟电流急急棒有点像的object-c程式写法疑问

楼主: ljuyentintho (小刘)   2015-03-10 18:21:28
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
作者: ckvir (ckvir)   2015-03-11 01:52:00
if 可以直接判断两个条件吗?是要加 && 分开吧
作者: fenir (severus)   2015-03-11 12:24:00
有没有办法取得背景图的pixel呢?如果可以我的想法是抓鼠标的位置(x,y) 如果pixel(x,y)!=redColor 就判定出界
楼主: ljuyentintho (小刘)   2015-03-11 12:49:00
因为我不会抓背景的pixel...
作者: howdiun (Howdiun)   2015-03-11 14:35:00
CGDisplayCreateImageForRect

Links booklink

Contact Us: admin [ a t ] ucptt.com