Releases: Noobish1/KeyedMapper
Releases · Noobish1/KeyedMapper
KeyedMapper 1.2.0
- Added a playground to describe this framework's usage
- Added a README
- Removed all uses of
self.
- renamed
JSONFromField(_:)
toJSON(fromField:)
andsafeValueForKeyPath(_:dictionary:)
tosafeValue(forKeyPath:inDictionary:)
to match the swift 3 naming conventions. - Switching from using NSDictionary to [AnyHashable : Any] and NSArray to [Any], as Swift 3 bridges untyped NSDictionaries to [AnyHashable : Any] and untyped NSArray's to [Any] as of SE-0116