2

我正在做的是UIImageViews随机放置在视图上,我让这部分工作我正在做的是:

return (int)0 + arc4random() % (self.view.bounds.frame.size.height-0+1);

还有宽度。

我遇到的是一些UIImageViews相互重叠的地方。我知道我可以使用CGRectIntersectsRect,但我怎么能循环它直到所有UIImageViews都没有相互重叠?

4

1 回答 1

3

这是一个如何修改当前方法以放置图像视图的示例,如我之前的评论中所述:

// make sure this array is a member object, else pass it to the makeFrame method below.
NSArray *imageviews = [[NSArray alloc] initWithObjects: view1, view2, view3, nil]; // make sure they have tags! set the .tag property of each imageview in the array.
UIView *mainView = nil; // this won't really be nil - this is the view you are adding your imageviews to.

for (int i = 0; i < [imageviews count]; i++)
{
    UIImageView *imageview = [imageviews objectAtIndex: i];
    CGRect newFrame = [self makeFrameForView: imageview];

    while (newFrame.origin.x == 0 && newFrame.origin.y == 0)
    {
        // then the method returned CGRectZero. create it again until we get a good frame.
        newFrame = [self makeFrameForView: imageview];
    }

    [imageview setFrame: newFrame];
}


-(CGRect)makeFrameForView: (UIImageView*)theImageView
{
    CGRect newFrame = nil; // create your new frame here using arc4random etc and the parameters you prefer.

    for (int i = 0; i < [imageviews count]; i++)
    {
        UIImageView *imageview = [imageviews objectAtIndex: i];

        // first, ensure you aren't checking the same view against itself!
        if (theImageView.tag != imageview.tag)
        {
            BOOL intersectsRect = CGRectIntersectsRect(imageview.frame, newFrame);

            if (intersectsRect)
                return CGRectZero; // throw an "error" rect we can act upon.

        }
    }

    return newFrame;
}
于 2012-12-28T18:52:54.293 回答