https://github.com/jlyonsmith/obj-c-to-swift-conversion
A book detailing the process of converting Objective-C projects to Swift
https://github.com/jlyonsmith/obj-c-to-swift-conversion
Last synced: about 1 month ago
JSON representation
A book detailing the process of converting Objective-C projects to Swift
- Host: GitHub
- URL: https://github.com/jlyonsmith/obj-c-to-swift-conversion
- Owner: jlyonsmith
- Created: 2015-12-03T22:13:25.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2016-07-24T19:34:44.000Z (almost 10 years ago)
- Last Synced: 2025-12-25T01:12:38.687Z (6 months ago)
- Language: JavaScript
- Size: 610 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Objective C to Swift Conversion
_A guide for converting projects from Objective-C to Swift_
> [Go to cookbook](https://jlyonsmith.github.io/obj-c-to-swift-conversion/)
## Contributing
If you notice something to improve, the easiest way to do that is to:
1. Fork this repo
2. Set up a branch
3. Make the changes (see `/content`)
4. Submit a pull request
It's just a regular GitHub repository!
Alternatively you can [open an issue](https://github.com/jlyonsmith/objc-c-to-swift-conversion/issues/new) and I'll look into it.
Note that the `gh-pages` branch and wiki content gets generated based on the main repository content.
## Gitbook Generator
The generator converts the wiki content to Gitbook (standalone site). In this case it is pushed to `gh-pages`. Use it as follows:
1. `npm install`
2. `npm run generate-gitbook`
This should generate `/gh-pages`. You can serve that directory through some static server (ie. hit `serve` at `/gh-pages`).
It is possible to deploy the book by hitting `npm run deploy-gitbook`. This will update `gh-pages` branch.
## Credits
The cool GitBook generation technology that this site uses I originally came across in the [React/Webpack Cookbook] (https://github.com/christianalfoni/react-webpack-cookbook)