Posts

Post not yet marked as solved
5 Replies
I figured out the issue. Since there were a lot of things deprecated in the latest iOS update, I forgot to take out my keyboard code that was deprecated. I was using this before: let keyboardHeight = (notification[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgSizeValue.heightNow I am using the following: let keyboardSize = (notification[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue).cgRectValueHope this helps anyone in the future.
Post not yet marked as solved
5 Replies
Were you able to figure this out? I just started testing on iOS 13 and noticed that my app crashes when I try to make my text field become the first responder.