An open API service indexing awesome lists of open source software.

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

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)
}
```