I have updated swift 3 and I found many errors. This is one of them :
Value of type 'Any?' has no member 'object'
This is my code :
jsonmanager.post( "http://myapi.com",
parameters: nil,
success: { (operation: AFHTTPRequestOperation?,responseObject: Any?) in
if(((responseObject? as AnyObject).object(forKey: "meta") as AnyObject).object(forKey: "status")?.intValue == 200 && responseObject?.object(forKey: "total_data")?.intValue > 0){
let aa: Any? = (responseObject? as AnyObject).object(forKey: "response")
self.data = (aa as AnyObject).mutableCopy()
}
New Error Update :
Optional chain has no effect, expression already produces 'Any?'
And
Cannot call value of non-function type 'Any?!'
It works well in previous version 7.3.1 swift 2.
This is json response :
{
"meta":{"status":200,"msg":"OK"},
"response":[""],
"total_data":0
}
Your responseObject
is Optional
(specifically, an Any?
), so you have to unwrap it in order to call its methods or access its properties, like responseObject?.object(forKey: "meta")
, etc. There are several places in the frameworks where values that used to be non-Optional
are now Optional
, especially where they were used in Objective-C without a specified nullability qualifier.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With