-
Notifications
You must be signed in to change notification settings - Fork 35
/
YNExpandableCell.podspec
32 lines (26 loc) · 1.59 KB
/
YNExpandableCell.podspec
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
29
30
31
32
#
# Be sure to run `pod lib lint YNDropDownMenu.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'YNExpandableCell'
s.version = '1.2.1'
s.summary = 'Easiest way to expand and collapse cell for iOS with Swift 4.2'
s.description = <<-DESC
Easiest usage of expandable & collapsible cell for iOS, written in Swift 3. You can customize expandable `UITableViewCell` whatever you like. `YNExpandableCell` is made because `insertRows(at indexPaths, with animation` and `deleteRows(at indexPaths, with animation` is hard to use. You can just inheirt `YNTableViewDelegate` and add one more method `func tableView(_ tableView: YNTableView, expandCellAt indexPath) -> UITableViewCell?`
DESC
s.homepage = 'https://github.com/younatics/YNExpandableCell'
s.screenshots = 'https://raw.githubusercontent.com/younatics/YNExpandableCell/master/Images/YNExpandableCell.PNG'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { "Seungyoun Yi" => "[email protected]" }
s.source = { :git => 'https://github.com/younatics/YNExpandableCell.git', :tag => s.version.to_s }
s.source_files = 'YNExpandableCell/*.swift'
s.resources = "YNExpandableCell/*.xcassets"
s.ios.deployment_target = '9.0'
# s.public_header_files = 'Pod/Classes/**/*.h'
s.frameworks = 'UIKit'
s.requires_arc = true
end