Amal
Amal

Reputation: 664

When loading a web page in UIWebView in iphone, the click does not work

I use and UIWebView in my application to load www.google.com. After the page is loaded, I am not able to click on any of the links. Basically the links dont work. Am I missing something ?

Upvotes: 0

Views: 959

Answers (2)

Ondrej Rafaj
Ondrej Rafaj

Reputation: 4417

In UI builder is a checkbox that allows to capture links phone numbers and you have to tick those to enable links ...

Upvotes: 0

Jason Jenkins
Jason Jenkins

Reputation: 5372

Are user interactions for your UIWebView by any chance not enabled? If you used InterfaceBuilder to create the view check to see if the User Interactions Enabled property for you UIWebView is checked. Programmatically, you can check the userInteractionEnabled property of the web view is set to YES. Also check that interactions are enabled for any parent views that contain your web view.

Upvotes: 1

Related Questions