-
Notifications
You must be signed in to change notification settings - Fork 108
Expand file tree
/
Copy pathNestedPageViewController.podspec
More file actions
30 lines (22 loc) · 1.12 KB
/
NestedPageViewController.podspec
File metadata and controls
30 lines (22 loc) · 1.12 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
Pod::Spec.new do |s|
s.name = 'NestedPageViewController'
s.version = '2.0.0'
s.summary = 'A nested page view controller for iOS with smooth scrolling coordination'
s.description = <<-DESC
NestedPageViewController provides a smooth nested scrolling experience
with header view, tab strip, and multiple child view controllers.
It coordinated scrolling between the header and child scroll views.
DESC
s.homepage = 'https://github.com/SPStore/NestedPageViewController'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { '乐升平' => 'lesp163@163.com' }
s.source = { :git => 'https://github.com/SPStore/NestedPageViewController.git', :tag => s.version.to_s }
s.ios.deployment_target = '13.0'
s.swift_version = '5.0'
s.source_files = 'Sources/NestedPageViewController/**/*'
s.resource_bundles = {
'NestedPageViewController.Privacy' => ['Sources/PrivacyInfo.xcprivacy']
}
s.frameworks = 'UIKit', 'Combine'
s.requires_arc = true
end