如何以编程方式将9个偶数图像添加到视图中| Swift

时间:2015-02-04 23:03:16

标签: swift uiimageview

我正在努力解决这个问题,希望能找到任何有关代码的帮助。 我试图以编程方式添加9张图像(3x3)来覆盖我的整个UIView。 我的问题是,我如何将我的UIView分成9个偶数图像以覆盖所有内容,并考虑到iPhone屏幕尺寸之间存在差异。 我不知道如何开始定制它,例如:

    firstImage.frame = CGRectMake(?,? ,200,200)
    secondImage.frame = CGRectMake(?,?, 200,200)

1 个答案:

答案 0 :(得分:3)

您可以将view.frame划分为网格,并将UIImageView添加为特定位置的子视图。图像是UIImage数组。

func create(){
        //Divide the screen height and width /3 because 3*3
        var height = self.view.frame.height/3
        var width = self.view.frame.width/3
        //Add your images
        var imageArray:[UIImage] = [firstImage, secondImage]
        var count = 0
        for i in 0...2{
            for j in 0...2{
                //Add a subview at the position
                var subview = UIImageView(frame: CGRectMake(width*CGFloat(j), height*CGFloat(i), width, height))
                subview.image = imageArray[count]
                self.view.addSubview(subview)
                count++

            }
        }
    }