I create an app in XCode 10.2.
Currently, Apple released a new OS version 13.2.3, I update ios Version in a real device and I check my app in the real device.
not displaying text in my textField
How to fix this.

Anybody can help me.
kzakharc
On
Change the appearance of your device to a light mode and see if the problem is solved. If yes, then you should set the textColor of the text relative to the given appearance mode.
You can add new Color Set in Assets.xcassets, like this:
and the color will change automatically relative to the selected appearance mode.
Hope this will help you!

If your app not supporting Dark Mode:-
you can Disable dark mode in your entire app by adding the following key-value in your Info.Plist.
If your app supporting Dark Mode:-
In iOS 13 Dark mode Your Text color will not be visible. If you didn't set it. If you assign System colors dark mode and light colors will change automatically.
or For custom colors, you can use callback method in UIColor
You can set this in storyboard itself.