0

I want to display video background in my app. Finally I got the below example to view video backgorund using gif image.

Some people said Apples don't allow animated gif image in iOS and one stack over flow ticket apple now allowing gif image.

So please conform me apple now allow the animated gif image to diaplay or advice me how to created video back ground for my app ?

Example Link

Stack-overflow Link

Community
  • 1
  • 1
2vision2
  • 4,933
  • 16
  • 83
  • 164

1 Answers1

-1

Chq out this Link FOr Official Apple Refrence UI Image Doc.. Thats Simply Say that the gif image will supported in this apple uiimage...

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UIImage_Class/

enter image description here

Sumit Sharma
  • 443
  • 3
  • 8
  • 1
    Can you please tel me how to animate gif image in uimage? – 2vision2 Oct 07 '14 at 07:34
  • 1
    This says that you can put a gif image into a UIImageView. But the OP specifically asks about animated gifs. This mentions nothing about animated gifs and IIRC UIImageView will not animate them natively. – Fogmeister Oct 07 '14 at 07:46
  • When I use `imageview.image = [uiimage imagenamed:"myGifImage"];` it gives me blank.. – Nikita P Mar 16 '15 at 16:59
  • Than U Must be Use the Thired Party Api .. Like SdWebImage From Here : https://github.com/rs/SDWebImage And Chnge Image From this methods.. : [imgVw setImageWithURL:[NSURL URLWithString:URLstr] usingActivityIndicatorStyle:UIActivityIndicatorViewStyleGray]; – Sumit Sharma Apr 23 '15 at 11:11