Reputation: 54258
I found some iOS libraries in Github that has a .podspec
file, but it does not appear in Cocoapods' repository. Is there any chance I can use pod
commands to install this library?
Example library: DDSlidingPanels
Upvotes: 1
Views: 1528
Reputation: 63984
Yes. You can copy their podspec into another folder such as ~/.cocoapods/repos/whatever/name/version/name.podspec
and then CocoaPods will be able to find it.
Upvotes: 2