以编程方式添加约束的UIImage看起来很斩

时间:2016-08-03 19:04:30

标签: ios autolayout

我使用代码中的约束进行布局。我的UIImages看起来很破碎。喜欢这个

enter image description here

但是图片是300x300 png并且质量很好

    var clock:UIImageView?

    clock = UIImageView()
    clock?.image = UIImage(named: "clock")
    clock?.contentMode = .ScaleAspectFit

    addSubview(clock!)
    clock!.translatesAutoresizingMaskIntoConstraints = false
    clock!.leadingAnchor.constraintEqualToAnchor(leadingAnchor, constant: 20).active = true
    clock!.bottomAnchor.constraintEqualToAnchor(bottomAnchor, constant: -20).active = true
    clock!.widthAnchor.constraintEqualToConstant(12).active = true
    clock!.heightAnchor.constraintEqualToConstant(12).active = true

这种情况发生在我上面添加的所有图片中。

如何解决这个问题?

0 个答案:

没有答案