You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
when using
override func viewDidLoad() {
super.viewDidLoad()
_ = hintTextField.becomeFirstResponder()
}
hint doesn't showing
to solve it I use
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
_ = hintTextField.becomeFirstResponder()
}
but it doesn't look good when you push new screen
The text was updated successfully, but these errors were encountered:
when using
override func viewDidLoad() {
super.viewDidLoad()
_ = hintTextField.becomeFirstResponder()
}
hint doesn't showing
to solve it I use
DispatchQueue.main.asyncAfter(deadline: .now() + 1.0) {
_ = hintTextField.becomeFirstResponder()
}
but it doesn't look good when you push new screen
The text was updated successfully, but these errors were encountered: