Blue Highlighting / Focus Ring on Catalyst App

前端 未结 6 1596
夕颜
夕颜 2020-12-29 11:52

I\'m currently in the process of porting my iOS app to macOS using Project Catalyst.

All of my text fields, text views and table views have a blue outline when activ

6条回答
  •  有刺的猬
    2020-12-29 12:11

    It helps to disable focus ring in all "view" classes in Catalyst

    extension UIView {
        #if targetEnvironment(macCatalyst)
        @objc(_focusRingType)
        var focusRingType: UInt {
            return 1 //NSFocusRingTypeNone
        }
        #endif
    }
    

提交回复
热议问题