davdroman / Bohr

Settings screen composing framework
MIT License
1.26k stars 83 forks source link

Pod set up #23

Closed airlacodes closed 8 years ago

airlacodes commented 8 years ago

Hi, The pod installation seems to be missing a significant number of files? Such as BOTableViewSection ?

davdroman commented 8 years ago

Hi there @JeevanThandi!

There's nothing wrong with the pod.

The thing is v3.0.0 is marked as a pre-release version as of now, so you need to implicitly ask for such version in order for CocoaPods to install it (given that it only installs the latest stable release), so your Podfile should look like this:

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '8.0'

pod 'Bohr', '~> 3.0.0-rc'

After pod installing, you should see something like this:

screen shot 2015-09-24 at 14 23 01
davdroman commented 8 years ago

v3.0.0 is now available, so you should no longer be having trouble with this.

Happy coding! :+1: