我有这个UIImage(Gif)let macacoGif = UIImage.gifWithName("macaco") 我在故事板上创建了这个图像视图 @IBOutlet weak var fundo: UIImageView! 如何将此UIImage添加到ImageView中? 最佳答案 UIImageView有一个.image属性,您可以在其中设置UIImage:fundo.image = macacoGif