本文介绍了Catalyst应用程序上的蓝色突出显示/聚焦环的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在使用Project Catalyst将iOS应用移植到macOS.
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 active.
我在最近的测试版中的Apple Catalyst应用程序(例如新闻)中注意到了它,所以我希望它只是一个错误.
I've noticed it in Apple Catalyst apps (e.g. News) in recent betas so I'm hoping it's just a bug.
有人找到以其他方式删除它的方法吗?
Has anyone found any way to remove it otherwise?
推荐答案
您可以迅速
extension UITextView {
#if targetEnvironment(macCatalyst)
@objc(_focusRingType)
var focusRingType: UInt {
return 1 //NSFocusRingTypeNone
}
#endif
}
这篇关于Catalyst应用程序上的蓝色突出显示/聚焦环的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!