如何修复 iOS14 后 UITextField 背景图片不显示的问题?

How to fix UITextField background image not displayed after iOS14?

在我的项目中,我注意到 ios14 更新后,UITextField 背景图像无法正常工作。我使用了这些设置

也许苹果会在以后的更新中解决这个问题。同时,我找到了swift 4.2的临时解决方案希望对你有所帮助

    func makeTextFieldBorderstyle(){
    if #available(iOS 14.0, *) {
        self.YourTextField1.borderStyle = .line
        self.YourTextField2.borderStyle = .line
        self.YourTextField3.borderStyle = .line
      } 
    }

调用此 viewDidLoad