我正在开发一款经典游戏“find a word”,比如这个寻找“lion”的例子
GHKJLDFGFYE
JLMN狮子ADT
GFOIAFEADGH ...
我有这个代码来获取所有的字母值
- (void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{
[self touchesBegan:touches withEvent:event];
UITouch *touch = [[event allTouches] anyObject];
CGPoint touchPoint = [[touches anyObject] locationInView:allLetters];
for (UILabel *letter in self.lettersArray) {
if (touchPoint.x > letter.frame.origin.x &&
touchPoint.x < letter.frame.origin.x + letter.frame.size.width &&
touchPoint.y > letter.frame.origin.y &&
touchPoint.y < letter.frame.origin.y + letter.frame.size.height )
{
[letter setBackgroundColor:[UIColor redColor]];
NSLog(@"%@",letter.text);
}
}}
它运行良好,因为当我用手指触摸它们时,它会正确获取标签文本。我的问题是我只需要获得一次价值......
现在它会多次获取该值,直到您传递给另一个字母
你有什么建议吗?
太感谢了!!