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
If you inherit search paths in your podfile it will be easier to use.