Hi,
I've assigned contextual menu
to my tableview rows which seems to focus cells background with blue ring in MacCatayst.
If tableview style is Plain
or Grouped,
it focus ring appear as it should but in InsetGrouped
type tableview, it seems to be broken.
I've tried disabling the focus with :
func tableView(_ tableView: UITableView, canFocusRowAt indexPath: IndexPath) -> Bool { return false }
And
tableView.selectionFollowsFocus = false
But no luck disabling it.
Anyone has any Idea about this behaviour ?