누구든지이 문제를 도와 줄 수 있습니까?문자열을 NSObject Swift로 변환 3
'Cannot convert value of type 'String' to expected dictionary key type 'NSObject'
let orderParameters =
["customer": [ <- //Getting the error in this line
"first_name": "Jon",
"last_name":"Doe",
"email": "[email protected]"],
"shipping": "free-shipping",
"gateway": "dummy",
"bill_to": [
"first_name": "Jon",
"last_name": "Doe",
"address_1": "123 Sunny Street",
"address_2": "Sunnycreek",
"city": "Sunnyvale",
"county": "California",
"country": "US",
"postcode": "CA94040",
"phone": "18768509132"],
"ship_to": "bill_to"
] as [NSObject: AnyObject]
내가 '고객'매개 변수에 NSObject의로 을 삽입 함 :이 빠른 컴파일러 오류를 받고 있어요?
에서 유형 캐스트 삭제 – matt