Next/Previous buttons on virtual keyboard making text input field scroll into view on iOS uiWebview - ios

I have a UI webview in iOS displaying a html page with two text input fields. When clicking on one text input field and using the Next button on the virtual keyboard, the second text input field receives focus but does not scroll into view. How can I make it scroll into view?

Related

SwiftUI Accessibility VoiceOver Focus Issue

I have one button on a screen and on tap of that button i am opening one modal (view). But after closing that view accessibility VoiceOver focus goes to top left element on the screen. I want that focus to stay on the same button after closing that view.

How can you programmatically trigger the "numbers / symbols" view for the Apple standard keyboard?

I have a textField that I pre-populate with text by setting the text property.
What I would like to achieve is if the last character of the text that I am setting is a number, I would like to have the keyboard automatically be on the symbols and numbers view once the textField becomes the firstResponder.
To be clear, I do NOT want to change the textField's keyboardType property and only present a numPad. What I want to achieve is to be able to programmatically toggle the normal alphanumeric keyboard to the numbers / symbols view that shows up when you tap the 123 key (next to space bar) on the bottom left of the alphabet view of the keyboard.
Is there any way to do that?

how to always show TextView text above keyboard in swift?

I have a Textview that's covered partially by the keyboard when it shows. As a result, the text which entered into the space covered by the keyboard can not be seen as it is typed.
How do I make the TextView scroll up when the entered text reached the space covered by the keyboard?
I have scroll enabled on the TextView but since all the text is visible on the screen , the vertical scroll bar is not visible. Can I have the vertical scroll bar visible at all time event when editing?
Best solution use IQKeyboardManager
library.
IQKeyboardManager works on all orientations, and with the toolbar.
There are also nice optional features allowing you to customize the
distance from the text field, add the next/previous done button as a
keyboard UIToolbar, play sounds when the user navigations through the
form and more.

Add control to storyboard after selecting text from picker view

I am trying to add controls i.e. Textfield, label, Button to a view at runtime. we need to select a control displayed in picker view and add the corresponding control will be displayed on screen.

Populate TableView Cell Inquiry

I have created a table view controller sort of a master-detail approach, when I click on the master view the detail view would come out with a textfield at the bottom of the screen contained within a view on a toolbar.
My question is how can I automatically adjust the position of the toolbar when the keyboard pops-out when I clicked on the textfield, currently when I enter on the textfield the keyboard comes out covering my textfield.
If you want to avoid the keyboard covers your textfield check this question and answers
iPhone Keyboard Covers UITextField
If you have more than a textfield, consider using a scrollview and move up when the keyboard appears.

Resources