Is Focus Ring broken for InstGrouped Style TableView in MacCatalyst?

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 ?

Answered by Frameworks Engineer in 716322022

This should no longer be happening in macOS Ventura. If you still see this behavior there, please file feedback and post the feedback ID here.

Also note that this is not a focus ring, so the focus APIs do not apply here.

Accepted Answer

This should no longer be happening in macOS Ventura. If you still see this behavior there, please file feedback and post the feedback ID here.

Also note that this is not a focus ring, so the focus APIs do not apply here.

Is Focus Ring broken for InstGrouped Style TableView in MacCatalyst?
 
 
Q