Uday Babariya
Uday Babariya

Reputation: 1021

Type of expression is ambiguous without more context swift 4.0

i am implementing pod 'Socket.IO-Client-Swift'

but in SocketEngine.swift file i'm getting this error.

 private func handleBase64(message: String) {
            // binary in base64 string
            let noPrefix = message[message.index(message.startIndex, offsetBy: 2)..<message.endIndex]

            if let data = Data(base64Encoded: noPrefix, options: .ignoreUnknownCharacters) {
                client?.parseEngineBinaryData(data)
            }
        }

enter image description here

thanks in advance!!

Upvotes: 3

Views: 14401

Answers (1)

jonaszmclaren
jonaszmclaren

Reputation: 2489

noPrefix is of type Substring, just coerce it to String:

if let data: Data = Data(base64Encoded: String(noPrefix), options: .ignoreUnknownCharacters) {
    ...
}

Upvotes: 14

Related Questions