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:
I was trying to change the TextField background but nothing is happening.
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:
I was trying to change the TextField background but nothing is happening.
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.