Is it possible to open the BasicMenu.xcodeproj on xcode on the new version of ECSlidingViewController without having to do it via Examples.xcworkspace? I am trying to just work through the BasicMenu example specifically and when I do I get this error:
ld: library not found for -lPods
clang: error: linker command failed with exit code 1 (use -v to see invocation)
Asked
Active
Viewed 282 times
1

malkoty
- 99
- 9
-
I copied the ECSlidingViewController into the BasicMenu target in Xcode and this seemed to help – malkoty Dec 02 '13 at 12:07
1 Answers
1
No, the dependencies to ECSlingViewController won't be available.
You should be able to work with the BasicMenu project inside the workspace. CocoaPods is not required, the repo includes the installed dependencies.

Michael Enriquez
- 2,520
- 21
- 13
-
Thank you @Michael so it wouldn't be advisable to setup outside of the workspace? – malkoty Dec 03 '13 at 07:19
-
If you're planning to contribute back then use the workspace. Otherwise you're free to do whatever. – Michael Enriquez Dec 03 '13 at 15:34