📜  如何在 swift 中添加图像(1)

📅  最后修改于: 2023-12-03 14:52:35.095000             🧑  作者: Mango

如何在 Swift 中添加图像

在 Swift 中添加图像是一个很常见的操作,这里我们将介绍两种方法。

方法一:使用 UIImageView

UIImageView 是一个显示静态图像的 UIView 子类,我们可以通过以下步骤使用它来添加图像。

  1. 添加一个 UIImageView 到你的界面中。
let imageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 100, height: 100))
imageView.image = UIImage(named: "example.jpg")
view.addSubview(imageView)
  1. 设置 imageView 的 frame 和图片。
imageView.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
imageView.image = UIImage(named: "example.jpg")
方法二:使用 UIButton

UIButton 可以用来添加一个带有图像的按钮,我们可以通过以下步骤使用它来添加图像。

  1. 添加一个 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)
  1. 设置 button 的 frame 和图片。
button.frame = CGRect(x: 0, y: 0, width: 100, height: 100)
button.setImage(UIImage(named: "example.jpg"), for: .normal)
结论

以上两种方法都可以在 Swift 中添加图像。UIImageView 更适合显示静态图像,而 UIButton 则更适合在按钮中使用图像。我们可以根据实际需求来选择适合的方法。