Skip to content
This repository has been archived by the owner on Dec 6, 2023. It is now read-only.

jihoonahn/PageImageScrollView

Repository files navigation

PageImageScrollView

Version License Platform

Requirements

  • iOS 9.0 or higher
  • Swift 5.0

Usage

import

import PageImageScrollView

Use

Storyboard

Add a custom view to the storyboard and set its class to "PageImageScrollView"

Programmatically

let pageScrollView = PageImageScrollView()
view.addSubView(pageScrollView)

Example

pageScroll.pageIndicatorTintColor = UIColor.systemBlue
pageScrollView.currentPageIndicatorTintColor = UIColor.black
pageScrollView.images= [
    .init(systemName: "1.circle") ?? .init(),
    .init(systemName: "2.circle") ?? .init(),
    .init(systemName: "3.circle") ?? .init()
]

Installation

Swift Package Manager

PageImageScrollView is available througb SPM. To install it, simply add the following line to your Package.swift:

// Package.swift

dependencies: [
    .package(url: "https://github.com/JiHoonAHN/PageImageScrollView", from: "0.2.0")
]

Cocoapods

PageImageScrollView is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'PageImageScrollView'

Author

JiHoonAHN, ahnjh1028@naver.com

License

PageImageScrollView is available under the MIT license. See the LICENSE file for more info.