https://github.com/fitclan/fitcoding
AutoCoding by Swift4 support
https://github.com/fitclan/fitcoding
Last synced: 3 months ago
JSON representation
AutoCoding by Swift4 support
- Host: GitHub
- URL: https://github.com/fitclan/fitcoding
- Owner: FitClan
- License: mit
- Created: 2018-01-16T08:11:11.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-12-10T08:22:20.000Z (over 3 years ago)
- Last Synced: 2024-03-14T17:31:05.955Z (about 1 year ago)
- Language: Swift
- Homepage:
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# FitCoding
AutoCoding by Swift4 support
## Use
```
pod "FitCoding"
``````
// MARK: NSCoding
required convenience init?(coder aDecoder: NSCoder) {
self.init()
setup(withDecoder: aDecoder)
}func encode(with aCoder: NSCoder) {
setup(withCoder: aCoder)
}
```