-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathTableViewScrollAndSelect.podspec
More file actions
28 lines (23 loc) · 1.13 KB
/
TableViewScrollAndSelect.podspec
File metadata and controls
28 lines (23 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
#
# TableViewScrollAndSelectController.podspec
# TableViewScrollAndSelect
#
# Created by Will Loderhose on 8/31/2018.
# Copyright © 2018 CocoaPods. All rights reserved.
#
Pod::Spec.new do |s|
s.name = 'TableViewScrollAndSelect'
s.version = '1.0.0'
s.summary = 'Elegant multi-selection for UITableView'
s.description = <<-DESC
TableViewScrollAndSelect provides a simple, elegant solution to multiple row selection in a UITableView. It was designed to deliver an excellent user experience while requiring very little setup - nothing more than a few lines of code in your UITableViewController.
DESC
s.homepage = 'https://github.com/wloderhose/TableViewScrollAndSelect'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'wloderhose' => 'wloderhose@gmail.com' }
s.source = { :git => 'https://github.com/wloderhose/TableViewScrollAndSelect.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '4.0'
s.source_files = 'TableViewScrollAndSelect/Classes/**/*'
s.frameworks = 'UIKit'
end