Merge pull request #9 from railwaymen/develop Develop
Merge pull request #9 from railwaymen/develop
Develop
Add you dependency to the project. For more info about how to do that read Apple’s docs
pod 'JSONFactorable'
pod install
import JSONFactorable
Add extension to JSONFactorable which contains functions used by every factory like buildObject(of:) function.
JSONFactorable
buildObject(of:)
Looking for more detailed examples of usage look into Tests folder
To merge two (or more) objects representable by a dictionary (or an array) follow the example:
var jsonConvertible: AnyJSONConvertible = [ "key": AnyJSONConvertible(someValue) ] let mergedJSON = try jsonConvertible.merge(with: AnyJSONConvertible(someObject))
where someObject conforms to JSONObjectType protocol
Feel free to add your pull request or create an issue.
©Copyright 2023 CCF 开源发展委员会 Powered by Trustie& IntelliDE 京ICP备13000930号
JSONFactorable
Installation
Swift Package Manager (recommended)
Add you dependency to the project. For more info about how to do that read Apple’s docs
CocoaPods
Usage
Add extension to
JSONFactorable
which contains functions used by every factory likebuildObject(of:)
function.Looking for more detailed examples of usage look into Tests folder
Merging example
To merge two (or more) objects representable by a dictionary (or an array) follow the example:
where someObject conforms to JSONObjectType protocol
Contribution
Feel free to add your pull request or create an issue.
Requirements