In a swift class, I have defined two closure properies like so:
var confirmationHandler: ((address: Address, refinedCoordinate: CLLocationCoordinate2D?) -> Void)?
var anotherHandler: ((address: Address, refinedCoordinate: CLLocationCoordinate2D) -> Void)?
When I try to set the former from Objective C code, I get the following error:
Property 'confirmationHandler' not found on object of type...
I have no trouble setting the latter. Why is this?