Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dboyliao/makeframework
Example project for making framework in iOS.
https://github.com/dboyliao/makeframework
Last synced: 8 days ago
JSON representation
Example project for making framework in iOS.
- Host: GitHub
- URL: https://github.com/dboyliao/makeframework
- Owner: dboyliao
- Created: 2016-01-26T07:04:01.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2016-01-26T07:05:58.000Z (almost 9 years ago)
- Last Synced: 2024-03-15T01:43:08.287Z (8 months ago)
- Language: Makefile
- Size: 61.4 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create Importable Framework Step by Step
1. Create a new XCode project.
- Choose `Cocoa Touch Framework`
- ![create_porject](img/create_project.png)
2. Enter framework name and choose saving path.
- ![enter_name](img/enter_name.png)
3. Add files.
- ![add_files](img/add_files.png)
4. Choose `Generic iOS Device` and press `Cmd+B` (build).
5. Show framework file in Finder
- ![show_in_finder](img/show_in_finder.png)
6. Drag the framework file to any project you'd like to use the framework.
- ![drag_in](img/drag_in.png)
7. In the project file, go to `General` and make sure your framework has been added to both `Embedded Binary` and `Linked Framework`.
- ![setting](img/setting.png)
8. Now you should be able to import your framework in the project.# Reference
- https://medium.com/@PyBaig/build-your-own-cocoa-touch-frameworks-in-swift-d4ea3d1f9ca3#.eibxvw28a