Posts

Post not yet marked as solved
0 Replies
1.1k Views
I have a WKWebView and I would like to add accessibility. The only problem is when the page loads up the first time, accessibility focus is lost on the buttons in the page but if I use my finger to tap the screen, then focus comes on. How can I enable focus on selection of the Webview import WebKit class ViewControllear: UIViewController, WKUIDelegate { override func viewDidLoad() { super.viewDidLoad() // Do any additional setup after loading the view, typically from a nib. let myWebView:WKWebView = WKWebView(frame: CGRect(x:0, y:0, width: UIScreen.main.bounds.width, height:UIScreen.main.bounds.height)) myWebView.uiDelegate = self self.view.addSubview(myWebView) //1. Load web site into my web view let myURL = URL(string: "https://www.apple.com") let myURLRequest:URLRequest = URLRequest(url: myURL!) myWebView.load(myURLRequest) } }
Posted
by kingolami.
Last updated
.