UIScrollView中子视图的错误对齐

时间:2015-06-13 08:32:43

标签: ios objective-c swift uiview uiscrollview

我有以下代码,它创建UIView及其一些子视图,并将它们添加到UIScrollView,所有这些都在循环中:

    var count:CGFloat=bookScrollView.frame.minX

    for var i=0;i<10;i++ {  
        var view=UIView(frame: CGRect(x: count + 20, y: bookScrollView.frame.minY + 30, width: 200, height: 300))
        view.backgroundColor=UIColor.whiteColor()
        view.layer.cornerRadius = 5;
        view.layer.masksToBounds = true;

        var imageView=UIImageView(frame: CGRect(x: count, y: view.frame.minY - 30, width: 150, height: 220))
       // imageView.image=UIImage(named: "Sample_Book")! 
        view.addSubview(imageView)

        var titleLabel=UILabel(frame: CGRect(x: count + 10, y: imageView.frame.maxY + 30, width: 185, height: 60))
        titleLabel.text="Head First Javascript" 
        titleLabel.backgroundColor=UIColor.clearColor()
        titleLabel.font=UIFont(name: "Menlo-Bold ", size: 15)
        titleLabel.textAlignment = NSTextAlignment.Center
        titleLabel.textColor=UIColor.grayColor()
        view.addSubview(titleLabel)

        bookScrollView.addSubview(view)
        count+=220
    }

    bookScrollView.contentSize=CGSize(width: count, height: 200)

除了第一个viewimageViewtitleLabel以外的其他内容不可见外,它的工作正常。

标签和imageView从第二个视图开始向右移动。

1 个答案:

答案 0 :(得分:1)

框架根据superview的坐标空间表示。

由于您要将图片视图和标签添加到view而非滚动视图,因此应在view的坐标空间中指定其框架。因此,您无需将count添加到其x位置。

    var imageView=UIImageView(frame: CGRect(x: 0.0, y: 0.0, width: 150, height: 220))

    var titleLabel=UILabel(frame: CGRect(x: 10.0, y: imageView.frame.maxY + 30, width: 185, height: 60))

注意:您应该查看UICollectionView和自动布局,以获得更好的实现方法。