Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8435171
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T06:50:49+00:00 2026-06-10T06:50:49+00:00

I have a UIWebView with a delegate id<UIWebViewDelegate> . When I click on links

  • 0

I have a UIWebView with a delegate id<UIWebViewDelegate>. When I click on links in the UIWebView, I get the NSURLRequest object in the callback:

 - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType {

What I’m trying to do is:

- (void)presentWebViewControllerWithUrl:(NSURL*)URL{
      SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithURL:URL];
      webViewController.modalPresentationStyle = UIModalPresentationPageSheet;
      webViewController.availableActions = SVWebViewControllerAvailableActionsOpenInSafari | SVWebViewControllerAvailableActionsCopyLink | SVWebViewControllerAvailableActionsMailLink;
      [self presentModalViewController:webViewController animated:YES];
}

When I place this code in my main view controller, the modal web view appears, but it doesn’t if I place it in my delegate. How do I make it appear?


update:

Returning NO from the shouldStartLoadWithRequest simply makes my UIWebViews turn white, with no content. It seems that the callback is being called when the webviews load. I am loading locally stored HTML into them with [web loadHTMLString:@"..." baseUrl: nil]
The modal never appears.

My view hierarchy is as follows:

  1. MainView
    • UIView
      • UIScrollView
        • UIWebView
        • UIWebView
        • …

Is there a way to "bubble" up the callbacks so that I can see the event in my main view controller?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-10T06:50:50+00:00Added an answer on June 10, 2026 at 6:50 am

    make sure to return (NO) when overriding your shouldStartLoadWithRequest delegate method.

    Also, I don’t see the [viewController presentModalViewController:webViewController animated:YES] in your code, something like this:

     - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType 
        {
         if (navigationType != UIWebViewNavigationTypeLinkClicked)
          return (YES);
    
         SVModalWebViewController *webViewController = [[SVModalWebViewController alloc] initWithURL:[request URL]]; 
         webViewController.modalPresentationStyle = UIModalPresentationPageSheet;  
         webViewController.availableActions = SVWebViewControllerAvailableActionsOpenInSafari | SVWebViewControllerAvailableActionsCopyLink | SVWebViewControllerAvailableActionsMailLink; 
         [myViewController presentModalViewController:webViewController animated:YES];
         return(NO);
        }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

-(bool) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{ if (navigationType == UIWebViewNavigationTypeLinkClicked) { NSURL *url =
I have a UIWebView containing html-formatted text. In the text some words are links.
I have defined a UIWebViewDelegate class and instantiated it in the Delegate property of
I have a UIViewController which is a UIWebViewDelegate and has a UIWebView inside of
I have a UIViewController subclass which includes a UIWebView and implements the UIWebViewDelegate. What
I have a UIWebView that contains button with JS function, but the delegate method
I have an IB that contant an UIWebView #import <UIKit/UIKit.h> @interface PostFunHorosViewController : UIViewController<UIWebViewDelegate>{
I have the following: @interface HelpViewController : UIViewController <UIWebViewDelegate> @property (nonatomic, retain) IBOutlet UIWebView
We have a uiWebview which uses jquery to make an ajax request in order
I have an application with tabs that are all webviews. I'm using UIWebViewDelegate so

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.