RollView is an iOS implementation of ListView on Android
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
- iOS 9.0+
- Xcode 9.0+
- Swift 4
CocoaPods is a dependency manager for Cocoa projects. You can install it with the following command:
$ gem install cocoapods
To integrate RollView into your Xcode project using CocoaPods, specify it in your Podfile
:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
use_frameworks!
target '<Your Target Name>' do
pod 'RollView', '~> 1.0'
end
Then, run the following command:
$ pod install
Note: At this time there is no official support for iOS targets or the related system libraries in SPM. So read this before processing.
All you need is to define RollView dependency in your package manifest file:
import PackageDescription
let package = Package(
name: "YourPackageName",
products: [
.library(name: "YourPackageName", targets: ["YourPackageName"]),
],
dependencies: [
.package(url: "https://github.com/gitvalue/RollView.git", from: "1.0.0"),
],
targets: [
.target(
name: "YourPackageName",
dependencies: ["RollView"]),
.testTarget(
name: "YourPackageNameTests",
dependencies: ["RollView"]),
]
)
and then run
$ swift fetch
Carthage is a decentralized dependency manager that builds your dependencies and provides you with binary frameworks.
You can install Carthage with Homebrew using the following command:
$ brew update
$ brew install carthage
To integrate RollView into your Xcode project using Carthage, specify it in your Cartfile
:
github "https://github.com/gitvalue/RollView" ~> 1.0.0
Run carthage update --platform iOS
to build the framework and drag the built RollView
into your Xcode project.
For more information read this
If you prefer not to use either of the aforementioned dependency managers, you can integrate RollView into your project manually by copying files from Source directory to your project and installing Pooling.
import UIKit
import RollView
class RollViewAdapter: Adapter {
// your adapter implementation
}
class MyViewController: UIViewController {
var rollView: RollView!
override func viewDidLoad() {
super.viewDidLoad()
rollView = RollView()
rollView.adapter = RollViewAdapter()
rollView.frame = view.frame
rollView.autoresizingMask = [ .flexibleWidth, .flexibleHeight ]
view.addSubview(rollView)
rollView.reload()
}
}
RollView reuses your views for memory-optimizations, so make sure that you initialize your views via init(frame: CGRect)
designated initializer.
This repo uses SemVer for versioning. For the versions available, see the tags on this repository.
- Dmitry Volosach - Initial work - @vlk1994
This project is licensed under the MIT License - see the LICENSE file for details