I'm having trouble using the UIButton configuration on tvOS.

When using UIButton.Configuration on tvOS, the focus animation and focus background color are drawn by default.

var configuration = UIButton.Configuration.plain() 
let button = UIButton(configuration: configuration, primaryAction: nil)

Is there a way to use UIButton.Configuration and still use it like an existing .custom type?

let button = UIButton(type: .custom)
I'm having trouble using the UIButton configuration on tvOS.
 
 
Q