0

I'm using the new Xcode beta version 12.0 beta 3 (12A8169g). During the first check, I noticed that TextField with white background shows as transparent background TextField:

TextField on iOS 14: TextField on iOS 14

TextField on iOS 13.3: TextField on iOS 13.3

I was trying to change the TextField background but nothing is happening.

Jonathan Hall
  • 75,165
  • 16
  • 143
  • 189
NDM
  • 944
  • 9
  • 30

1 Answers1

0

Maybe you are setting color from xib/storyboard. Don't do that. Just set background color from viewDidLoad() like the following.

self.myTF.backgroundColor = .white

It worked for me.

Jamshed Alam
  • 12,424
  • 5
  • 26
  • 49