Swiftyjson: Swift3 issues

Created on 27 Jun 2016  Â·  7Comments  Â·  Source: SwiftyJSON/SwiftyJSON

Two issues - please help adjust for Swift3:
extension JSON: Swift.CollectionType, Swift.SequenceType, Swift.Indexable {

/Pods/SwiftyJSON/Source/SwiftyJSON.swift:198:1: error: type 'JSON' does not conform to protocol 'IndexableBase' extension JSON: Swift.CollectionType, Swift.SequenceType, Swift.Indexable {

public func rawString(encoding: UInt = NSUTF8StringEncoding, options opt: JSONSerialization.WritingOptions = .prettyPrinted) -> String? {

/Pods/SwiftyJSON/Source/SwiftyJSON.swift:646:41: error: default argument value of type 'String.Encoding' cannot be converted to type 'UInt'

Most helpful comment

I tryed the swift3 branch but is not working, I still have compiling errors

All 7 comments

Found first solution - IndexableBase was missing a function to complete conformation - no idea if response is correct but compiles now:
public func index(after i: JSON.Index) -> JSON.Index {
return JSON.Index();
}

Are you using Swift3 branch? It compiles

Installed via cocoapods

Try this:
pod 'SwiftyJSON', :git => 'https://github.com/SwiftyJSON/SwiftyJSON.git', branch: 'swift3'

I tryed the swift3 branch but is not working, I still have compiling errors

Yeah the branch works via pods but had to manually fix a few issues

On Saturday, September 17, 2016, Luis Ezcurdia [email protected]
wrote:

I tryed the swift3 branch but is not working, I still have compiling errors

—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
https://github.com/SwiftyJSON/SwiftyJSON/issues/542#issuecomment-247807962,
or mute the thread
https://github.com/notifications/unsubscribe-auth/ATO_Va2MxFG47UNWcWOdbbOqui3i_s5Lks5qrFXugaJpZM4I_H8A
.

@bloqlist Seems that the issue is fixed for you so I'm gonna go ahead and close this. Thank you!

Was this page helpful?
0 / 5 - 0 ratings