码迷,mamicode.com
首页 > 移动开发 > 详细

iOS开发中在UIWebView中添加Gif动态图

时间:2015-08-10 13:24:33      阅读:942      评论:0      收藏:0      [点我收藏+]

标签:

开发是一件很有趣的事,偶尔在程序中添加一些小东西,会给你的应用增色不少。比如,当你的某些功能暂时还不准备上线时,可以先一个放展示Gif动态图的UIWebView上去,既可以告诉用户APP以后会有的功能,也会使你的APP手动可爱,打动一大波妹子。

 

#import "ViewController.h"

 

@interface ViewController ()

@property (weak, nonatomic) IBOutlet UIWebView *myWalletWebView;

@end

 

@implementation ViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

 

    [self initWithPictureAnimation];

}

 

-(void)initWithPictureAnimation{

    self.myWalletWebView.backgroundColor = [UIColor lightGrayColor];

    

    NSData *gif = [NSData dataWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"myWallet" ofType:@"gif"]];

    

    self.myWalletWebView.userInteractionEnabled = NO;

    

    [self.myWalletWebView loadData:gif MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];

    

    NSLog(@"hehe");

}

 

@end

 

 

iOS开发中在UIWebView中添加Gif动态图

标签:

原文地址:http://www.cnblogs.com/yyt-hehe-yyt/p/4717603.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!