Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 278 Bytes

File metadata and controls

24 lines (16 loc) · 278 Bytes

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