博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[翻译] JSAnimatedImagesView
阅读量:5076 次
发布时间:2019-06-12

本文共 2059 字,大约阅读时间需要 6 分钟。

JSAnimatedImagesView

本人测试的效果:

 

Description:描述

Easy to use UIView subclass to quickly add a cool animated carrousel of pictures to your app.

Documentation: 

可以非常简易的将旋转木马效果添加到你的应用当中。

Usage:使用

  • Using :
  • Add pod 'JSAnimatedImagesView', '~> 1.0.' to your Podfile.
  • You're done!

-- or --

  • Clone the repository:
$ git clone git@github.com:JaviSoto/JSAnimatedImagesView.git
  • Update the submodules:
$ git submodule update --init
  • Check out the sample project. 检查项目文件
  • Drag the two files JSAnimatedImagesView.(h/m) onto your project. 将这两个文件JSAnimatedImagesView.(h/m)拖入到你的工程项目当中
  • Drag Dependencies/MSWeakTimer/MSWeakTimer.(h/m) onto your project. 将这两个文件/MSWeakTimer/MSWeakTimer.(h/m)拖入到你的工程项目当中
  • Include the header file JSAnimatedImagesView.h into the controller where you want to use it. 添加上头文件
  • Create a JSAnimatedImagesView instance either via code, or in interface builder (by creating a UIView and changing its class to JSAnimatedImagesView). 通过代码创建出JSAnimatedImagesView的实例对象,或者通过IB
  • Set the data source property on the view (probably on the viewDidLoad method): 设置图片数据源即可
self.animatedImagesView.dataSource = self;
  • Implement the data source methods: 实现data source方法
@interface MyViewController () 
// Conform to the protocol @end
@implementation MyViewController- (NSUInteger)animatedImagesNumberOfImages:(JSAnimatedImagesView *)animatedImagesView { return self.myImageNames.count; } - (UIImage *)animatedImagesView:(JSAnimatedImagesView *)animatedImagesView imageAtIndex:(NSUInteger)index { return [UIImage imageNamed:[self.myImageNames objectAtIndex:index]]; } @end

Configuration:配置

@property (nonatomic, assign) NSTimeInterval timePerImage;

Specifies the time each image is viewed until the next image is faded in.

精确设置每一张淡入淡出的图片的时间

@property (nonatomic, assign) NSTimeInterval transitionDuration;

Specifies the duration of the transition (fade-out/fade-in) animation.

精确设置淡入淡出的时间间隔

Compatibility:兼容性

  • JSAnimatedImagesView is compatible with iOS5.0+ 兼容iOS5.0+以上
  • JSAnimatedImagesView requires ARC. 需要开启ARC

 

转载于:https://www.cnblogs.com/YouXianMing/p/3978588.html

你可能感兴趣的文章
在centos上开关tomcat
查看>>
重启rabbitmq服务
查看>>
正则表达式(进阶篇)
查看>>
无人值守安装linux系统
查看>>
【传道】中国首部淘宝卖家演讲公开课:农业本该如此
查看>>
jQuery应用 代码片段
查看>>
MVC+Servlet+mysql+jsp读取数据库信息
查看>>
黑马程序员——2 注释
查看>>
用OGRE1.74搭建游戏框架(三)--加入人物控制和场景
查看>>
转化课-计算机基础及上网过程
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
互联网模式下我们更加应该“专注”
查看>>
myeclipse集成jdk、tomcat8、maven、svn
查看>>
查询消除重复行
查看>>
Win 10 文件浏览器无法打开
查看>>
HDU 1212 Big Number(C++ 大数取模)(java 大数类运用)
查看>>
-bash: xx: command not found 在有yum源情况下处理
查看>>
[leetcode]Minimum Path Sum
查看>>
内存管理 浅析 内存管理/内存优化技巧
查看>>