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

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

У меня есть 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 && 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 && 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 && CGRectIntersectsRect(currentLetter.frame, *letterInTempLetterArray*.frame))
    {
    //Align centers of the currentLetter and the *letterInTempLetterArray* in which the currentLetter intersected with
    //Do more stuff
    }

}

1 Ответ

1 голос
/ 22 октября 2011
BOOL touched = NO;

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

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

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...