I'm trying to set an accessibility label / value for the UITableViewRowAction's button , in order to use it with appium automation , but from some reason , the accessibility hasn't been recognised
cancel = UITableViewRowAction(style: .Destructive, title: title) { action, index in
tableView.setEditing(false, animated: true)
let order = self.viewModel.orders[indexPath.row].order
self.performSegueWithIdentifier( self.cancelOrderConfirmationSegueId, sender: order)
}
cancel.accessibilityValue = "SomeValue"
cancel.accessibilityLabel = "SomeLabel"
eventually , the value property remind as nil and the label property gets title's name (Cancel)
I was wondering if it possible to modify the accessibility for this type of object ?