Логика CGRectIntersectsRect — есть ли лучший / более простой способ выполнить то, что я пытаюсь сделать здесь?

#iphone #objective-c #ios #ipad #uiimageview

#iPhone #objective-c #iOS #iPad #uiimageview

Вопрос:

Вот что я пытаюсь сделать..

У меня есть UIImageViews всех букв алфавита. Если пользователь перемещает букву вниз от алфавита, чтобы написать слово, а перемещаемая и отбрасываемая буква не пересекается с какой-либо другой буквой, то я предполагаю, что они не пишут слово, поэтому я добавляю эту букву во временный массив букв.

Допустим, они сделали это с помощью 5 букв. И теперь они решают, что хотят создавать слова, используя 5 букв, которые они вывели.

Как бы мне создать условие if, которое позволяет мне проверять, пересекаются ли какие-либо фрагменты панорамированных букв с любыми буквами, которые существуют во временном массиве.

С тем, что я пытаюсь сделать, кажется, нельзя просто поместить мои операторы if внутри перечисляющего цикла for . Так что я не уверен, что я могу сделать.

Вот мой псевдокод логика: http://pastie.org/2738238

 if ([gestureRecognizer state] == UIGestureRecognizerStateEnded)
{

    //If a letter has never been panned or the currentPanned letter does not intersect with a letter that was added to the tempLetterArray
   //*letterintempLetterArray* = How do I test against all the letters in the array in the if condition?
    if ([tempLetterArray count] < 1 || !CGRectIntersectsRect(currentLetter.frame, *letterIntempLetterArray*.frame))
    {
        //Letters that may become words if other letter images are panned next to it.
        //Make the frame of letter larger so the frame intersects without having to overlap letter.
        currentLetter.contentMode = UIViewContentModeCenter;
        currentLetter.frame = CGRectInset(currentLetter.frame, -10, -10);

        currentLetter.backgroundColor = [UIColor redColor];
        [tempLetterArray addObject:currentLetter];  

    }

    //If a word hasn't been built yet, and user pans letter next to existing letter on the screen, build the first word.
    else if ([firstWordArray count] < 1 amp;amp; CGRectIntersectsRect(currentLetter.frame, *letterIntempLetterArray*.frame))
    {

    //Align centers of the currentLetter and the *letterInTempWordArray* in which the currentLetter intersected with


        //Remove the letter from the temp array, and add it to the firstWordArray
        NSUInteger indexOfTempLetter = [tempLetterArray indexOfObject:*letterIntempLetterArray*];
        UIImageView *tempLetter = [[tempLetterArray objectAtIndex: indexOfTempLetter] retain];
        [tempLetterArray removeObjectAtIndex: indexOfTempLetter];
        [firstWordArray insertObject: tempLetter atIndex:0];
        [tempLetter release];

        //Make the frame of letter larger so the frame intersects without having to overlap letter.
        //Add the letter that was just dropped after
        currentLetter.contentMode = UIViewContentModeCenter;
        currentLetter.frame = CGRectInset(currentLetter.frame, -10, -10);

        currentLetter.backgroundColor = [UIColor redColor];
        [firstWordArray addObject: currentLetter];

    }

    //Start building the first word
    else if ([firstWordArray count] > 1 amp;amp; CGRectIntersectsRect(currentLetter.frame, *letterInFirstWordArray*.frame))
    {
        //Align centers of the currentLetter and the *letterInFirstWordArray* in which the currentLetter intersected with
    //Do more stuff

    }

    //If the current letter intersects with a letter in temp letter array, and the first word array has already been built on
    //Start building the second word (Basically do this until 5 words have been created)
    else if ([firstWordArray count] > 1 amp;amp; CGRectIntersectsRect(currentLetter.frame, *letterInTempLetterArray*.frame))
    {
    //Align centers of the currentLetter and the *letterInTempLetterArray* in which the currentLetter intersected with
    //Do more stuff
    }

}
  

Ответ №1:

 BOOL touched = NO;

for(UIImageView* img in TemporedArrayOfLetter)
{
   touched = CGRectIntersectsRect(currentLetter.frame,img.frame);
   if(touched)break;
}
if(tapcount<1 amp;amp; touched)
{
  foo code;
}
  

надеюсь, это поможет вам.

Комментарии:

1. Я люблю тебя. Это очень помогло. Спасибо!