Reputation: 81
I am creating Framework using "jverkoey/ iOS-Framework" using the following link
https://github.com/jverkoey/iOS-Framework#resources.
Here i am able to create .framework part but not able to create bundle for my Framework. i am using Xcode 5.0 and iOS 7.0 . Can anybody help me to create bundle for my Framework.
Upvotes: 1
Views: 2204
Reputation: 3145
You must select target with bundle type in your project :
Then you need just compile that target with Cmd-B
or Product -> Build
After that, you can find your bundle here:
File -> Project[Workspace] Settings
Tap on the arrow
And find next folder DerivedData -> [YOUR_PROJECT_NAME-Random_Numbers] -> Build -> Products -> Debug-[SDK]
Also you can just right click on archive in Xcode in Product group and select Show in Finder
, but it was not the case for me
I followed the steps from repo you linked to create bundle target and then found it with steps I described above
Upvotes: 1