iOS中 动态启动图GIF的简单设置

[objc] view plain copy
  1.  // 设定位置和大小  
  2.     CGRect frame = CGRectMake(50,340,[UIScreen mainScreen].bounds.size.width / 2,[UIScreen mainScreen].bounds.size.height / 2);  
  3.     frame.size = [UIImage imageNamed:@"640gif.gif"].size;  
  4. //    frame.size.width = [UIImage imageNamed:@"启动页640.gif"].size.width / 2;  
  5. //    frame.size.height = [UIImage imageNamed:@"启动页640.gif"].size.height / 2;  
  6.     // 读取gif图片数据  
  7.     NSData *gif = [NSData dataWithContentsOfFile: [[NSBundle mainBundle] pathForResource:@"640gif" ofType:@"gif"]];  
  8.     // view生成  
  9.     UIWebView *webView = [[UIWebView alloc] initWithFrame:frame];  
  10.     webView.userInteractionEnabled = NO;//用户不可交互  
  11.     [webView loadData:gif MIMEType:@"image/gif" textEncodingName:nil baseURL:nil];  
  12.     [self.view addSubview:webView];  

上一篇:Ubuntu安装Nvidia显卡驱动


下一篇:iOS设置拍照retake和use按钮为中文简体