I converted my project to swift 3 and am having issue with the kinvey conversion. I had this before but it now gives me this error: "Cannot convert value of type '(AnyObject!, NSError!) -> Void' to expected argument type 'KCSCustomEndpointBlock!'". How could I fix this issue?
KCSCustomEndpoints.callEndpoint("endpointName", params: params, completionBlock: {
(results: AnyObject!, error: NSError!) -> Void in
if results != nil {
}
})
KCSCustomEndpointBlockwas defined, especially the types like results, maybe it'sAnytype - William Hu