swift2xcode7-beta2

'_' is not convertible to StringLiteralConvertible


My custom function is following:

func mockDictionaryForLocation() -> [String: AnyObject] {
    let dictionary = [
        "id" = "1234",  //here I have an error from the title, why?
        "working_type" = "open_for_selected",
        "min_order_price" = 15,
        "specialization_breakfasts" = 1,
        "specialization_confectioneries" = 1,
        "specialization_dinners" = 0
    ]



    return dictionary
}

enter image description here


Solution

  • You need to use colons instead of equals:

    func mockDictionaryForLocation() -> [String: AnyObject] {
        let dictionary = [
            "id": "1234",
            "working_type": "open_for_selected",
            "min_order_price": 15,
            "specialization_breakfasts": 1,
            "specialization_confectioneries": 1,
            "specialization_dinners": 0
        ]
        return dictionary
    }