📅  最后修改于: 2023-12-03 14:52:35.095000             🧑  作者: Mango
在 Swift 中添加图像是一个很常见的操作,这里我们将介绍两种方法。
UIImageView 是一个显示静态图像的 UIView 子类,我们可以通过以下步骤使用它来添加图像。
let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
imageView.image = UIImage(named: "example.jpg")
view.addSubview(imageView)
imageView.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
imageView.image = UIImage(named: "example.jpg")
UIButton 可以用来添加一个带有图像的按钮,我们可以通过以下步骤使用它来添加图像。
let button = UIButton(type: .system)
button.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
button.setImage(UIImage(named: "example.jpg"), for: .normal)
view.addSubview(button)
button.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
button.setImage(UIImage(named: "example.jpg"), for: .normal)
以上两种方法都可以在 Swift 中添加图像。UIImageView 更适合显示静态图像,而 UIButton 则更适合在按钮中使用图像。我们可以根据实际需求来选择适合的方法。