Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use NSSerialization.datawithJSON in Swift 2

Been trying to get this to work in Swift 2.0, the error says:

Type NSJSONWritingOptions cannot conform to protocol NilLiteralConvertible

at var options = prettyPrinted...:

func JSONStringify(value: AnyObject,prettyPrinted:Bool = false) -> String {

    var options = prettyPrinted ? NSJSONWritingOptions.PrettyPrinted : nil

    if NSJSONSerialization.isValidJSONObject(value) {
        do{
            let data = try NSJSONSerialization.dataWithJSONObject(value, options: options)
            if let string = NSString(data: data, encoding: NSUTF8StringEncoding) {
                return string as String
            }
        } catch {

        }
    }
    return ""
}
like image 392
Jackspicer Avatar asked Jun 18 '15 16:06

Jackspicer


2 Answers

let options = prettyPrinted ? 
         NSJSONWritingOptions.PrettyPrinted : NSJSONWritingOptions(rawValue: 0)

is the right syntax for swift 2.0

like image 52
Jackspicer Avatar answered Oct 11 '22 03:10

Jackspicer


You can also pass an empty array for no options:

let options:NSJSONWritingOptions = prettyPrinted ? .PrettyPrinted : []
like image 5
Eric Aya Avatar answered Oct 11 '22 01:10

Eric Aya