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 8456755
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 10, 20262026-06-10T12:37:45+00:00 2026-06-10T12:37:45+00:00

How can I have a UIWebView load a file that is really an HTML

  • 0

How can I have a UIWebView load a file that is really an HTML file but has it’s extension changed to .wxyz ? However there are a group of files that contain hyperlinks between the files. The hyperlinks in the documents point to files with the .html extension.

So, what I need to have happen is for the UIWebView to recognize that .wxyz == .html and will open the file and when a link like this is clicked <a href="myHTML.html">A Link</a> will open the file myHTML.wxyz .

Should I subclass UIWebView? Or is there another way to do this?

All of these .wxyz files will be contained within the app and not on a server.

  • 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-10T12:37:47+00:00Added an answer on June 10, 2026 at 12:37 pm

    I think you can do this with UIWebViewDelegate webView:shouldStartLoadWithRequest:navigationType: – just detect requests for html that also have a wxyz resource equivalent, return NO, and make a request for the wxyz type instead. The code below should give the gist of it:

    - (BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
    {
        // if it's not a link click, return YES
        if (navigationType != UIWebViewNavigationTypeLinkClicked) {
            return YES;
        }
    
        NSString *ext= [[request URL] pathExtension];
        if ([@"html" isEqualToString:ext]) {
            if (/* filename matches one of your wxyz resources */) {
    
                // user clicked an html file that should be loaded via wxyz:
                NSURL *newURL = [[request URL] URLByDeletingPathExtension];
                newURL = [newURL URLByAppendingPathExtension:@"wxyz"];
                NSURLRequest *newRequest = [NSURLRequest requestWithURL:newURL];
                [webView loadRequest:newRequest];
                return NO;
    
            }
        }
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a local html file in my xcode project. but i can't load
How can I load a HTML from the local file system? I have seen
I can have a UIWebView with the .m3u file opened, which will go to
so I have UIWebView in my application and I load some html (article) to
I have a UIWebView that I would like to load different URLs depending on
I have an app with a UIWebView inside a UIViewController . I load HTML
I have a button that can have a focus css class associated with it
I have a Location that can have Events. I want to have an upcoming_events
I have a filename that can have multiple dots in it and could end
I have a phone number field that can have lots of different characters such

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.