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