CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

CycleView 1.0.0

CycleView 1.0.0

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release May 2015
SPMSupports SPM

Maintained by Sariel Tang.



CycleView 1.0.0

  • By
  • 汤晔

CycleView

  • The easiest way to use infinite-loop-view
  • 用法最简单的无限循环的图片轮播器

Requirements

  • iOS 8.0+
  • Xcode 6.3

Usage

Swift

import CycleView

class className : PictureCycleController{

    //override loadView function
    //重写loadViewe方法
    override func loadView() {
        super.loadView()
    }

    var arrayM: [UIImage]?

    override func viewDidLoad() {
        super.viewDidLoad()
        //input an Array with UIImage
        //传入一个UIImage的图像数组
        imageList = arrayM;
    }

}