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

本文共 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

你可能感兴趣的文章
C程序模拟实现银行家算法
查看>>
IDEA Rest Client使用
查看>>
洛谷1423 小玉在游泳
查看>>
java中split()特殊符号"." "|" "*" "\" "]"
查看>>
Java字节流与字符流的区别
查看>>
Reactive Extensions介绍
查看>>
【Language】Popular Javascript Convention on Github
查看>>
oracle spatial 创建空间字段索引 创建字段索引 完善SQL语句实例二
查看>>
[15] 星星(Star)图形的生成算法
查看>>
三体运动的程序模拟
查看>>
敏捷开发综述
查看>>
04: 层级评论
查看>>
CentOS Nginx MySQL PHP 环境搭建 (Version 1.0)
查看>>
ASP.NET图片上传,加水印文字和水印图片!
查看>>
初学java-基础
查看>>
node-sass 报错的解决方法
查看>>
Get IPv4 Address 2.0
查看>>
Let's-Bug修复日志
查看>>
Java中String类(字符串操作)的10个常见问题和解决方法
查看>>
电子书下载:Microsoft Windows Workflow Foundation 4.0 Cookbook
查看>>