fcanas / ios-color-picker

A color picker for iOS
MIT License
119 stars 27 forks source link

Podfile #20

Open nsinklier opened 6 years ago

nsinklier commented 6 years ago

If you inherit search paths in your podfile it will be easier to use.

platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'

target :ColorPicker do
    pod 'iOS-Color-Picker', path: '../'
end

target :SwiftyPicker do
    inherit! :search_paths
    use_frameworks!
    pod 'iOS-Color-Picker', path: '../'
end