I wanted to try out BCTabBarController and added the files to my test-project by:

  1. Dragging the BCTabBarController.xcodeproj onto my project in the project navigator.
  2. Going to my project/target/Build Phases/Target Dependencies and adding BCTabbarController (little house icon)
  3. Going to project/target/Build Phases/Link Binaries With Libraries and add the libBCTabbarCOntroller.

Usually when I add a library like this, the .a library file will show up in my project navigator (and I drag it to frameworks to keep things tidy).

Strangely enough this did not happen with the libBCTabbarController.a file, it was nowhere. And surely enough, the BCTabBarController.h header is not recognized anywhere.

What can cause this behavior? My debugging options are pretty limited, but I suspect that Xcode 4.1 finds something about the library it does not "like" and does not add it to my project.

link|improve this question

It would be a lot easier to just use the source code files in your current project then trying to build a library, import it, etc. Then that way you can customize the source if you desire, without having to rebuild the lib/framework and re-import it. – chown Oct 5 '11 at 21:17
Thanks, I ended up doing just that after scratching my head for a few hours. – RickiG Oct 7 '11 at 15:29
feedback

2 Answers

up vote 0 down vote accepted

Select the BCTabbar as a target and build it .then repeat the above it would add

link|improve this answer
Thanks, just went back and did this. It works. In the meantime I had gone with chown's suggestion, but yours is the answers to the question:) – RickiG Oct 10 '11 at 8:23
feedback

It would be a lot easier to just use the source code files in your current project then trying to build a library, import it, etc. Then that way you can customize the source if you desire, without having to rebuild the lib/framework and re-import it.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.