Problems using 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)

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)
Problems using UIButton.Configuration on tvOS.
 
 
Q