after updating my Xcode i'm getting error in backendless's find Syntax e.g.
dataStore.find(
{ (result: BackendlessCollection!) -> Void in
let contacts = result.getCurrentPage()
for obj in contacts {
print("\(obj)")
}
},
error: { (fault: Fault!) -> Void in
print("Server reported an error: \(fault)")
})
and the error is : Cannot convert value of type '(BackendlessCollection!) -> Void' to expected argument type '((BackendlessCollection?) -> Void)!'
how can i fix it ???