从PasteBoard在UITextView中插入GIF并为其设置动画

时间:2016-07-11 14:11:44

标签: swift animation uitextview

有没有办法在UITextView中插入Gif文件并为其设置动画?我看了几个例子,但在那里我需要gif名称,或者将gif分成帧,再将它们的名字分开。我从互联网上下载图像并复制它。我想将图像粘贴到textview中并为gif设置动画。

提前致谢

1 个答案:

答案 0 :(得分:0)

我在imageView中尝试过,希望它也适用于textView

 let imageData = NSData(contentsOfURL: NSBundle.mainBundle().URLForResource("splash_bg", withExtension: "gif")!)
    let imageGif = UIImage.gifWithData(imageData!)
    let imageView = UIImageView(image: imageGif)

    imageView.frame = CGRect(x: 0.0, y: 0.0, width: UIScreen.mainScreen().bounds.width, height: UIScreen.mainScreen().bounds.height)
    view.addSubview(imageView)