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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T19:55:46+00:00 2026-05-27T19:55:46+00:00

So i’m using the MWFeedParser, which I think is a beautiful RSS feed app,

  • 0

So i’m using the MWFeedParser, which I think is a beautiful RSS feed app, but when clicking on a link it goes to Safari. I fear that a good portion of iPhone users are unaware of the fact that they can double-click on the iPhone’s one and only button to view all open apps and go back to the RSS feed, and will thus get stuck. Therefore I’d rather use an in-app browser.

In other words, currently when I click on a link from MWFeedParser it goes to Safari; I prefer it goes to an in-app browser.

I have the browser class set up called WebViewController.
basically with [detailWebView loadRequest:[NSURLRequest requestWithURL:detailURL]];
So “detailURL” is what it will look for

What do I put in the DetailTableViewController instead of the sharedApplication code???

  • 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-05-27T19:55:46+00:00Added an answer on May 27, 2026 at 7:55 pm

    bummer nobody was able to answer…in case others are looking for how to do it, change the contents of didSelectRowAtIndexPath to

    if (_webViewController == nil) {
            self.webViewController = [[[WebViewController alloc] initWithNibName:@"WebViewController" bundle:[NSBundle mainBundle]] autorelease];
        }
    
        MWFeedItem *entry = [parsedItems objectAtIndex:indexPath.row];
        _webViewController.entry = entry;
        [self.navigationController pushViewController:_webViewController animated:YES];
    
    
        // Deselect
        [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
    

    Add a WebViewController;
    the .m has

    #import "WebViewController.h"
    #import "MWFeedItem.h"
    @implementation WebViewController
    @synthesize webView = _webView;
    @synthesize entry = _entry;
    
    // The designated initializer.  Override if you create the controller programmatically and want to perform customization that is not appropriate for viewDidLoad.
    
    
    - (void)viewWillAppear:(BOOL)animated {
    
        NSURL *url = [NSURL URLWithString:_entry.link];    
        [_webView loadRequest:[NSURLRequest requestWithURL:url]];
    
    }
    
    - (void)viewWillDisappear:(BOOL)animated {
    
        [_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:@"about:blank"]]];
    
    }
    
    - (void)didReceiveMemoryWarning {
        // Releases the view if it doesn't have a superview.
        [super didReceiveMemoryWarning];
    
        // Release any cached data, images, etc. that aren't in use.
    }
    
    - (void)viewDidUnload {
        [super viewDidUnload];
        // Release any retained subviews of the main view.
        // e.g. self.myOutlet = nil;
    }
    
    
    - (void)dealloc {
        [_entry release];
        _entry = nil;
        [_webView release];
        _webView = nil;
        [super dealloc];
    }
    

    And the .h has

    @class MWFeedItem;
    
    @interface WebViewController : UIViewController {
        UIWebView *_webView;
        MWFeedItem *_entry;
    }
    
    @property (retain) IBOutlet UIWebView *webView;
    @property (retain) MWFeedItem *entry;
    

    (Basically I just took the webview part of Ray Wenderlich’s RSS feeder and threw it in to this one.)

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm parsing an RSS feed that has an ’ in it. SimpleXML turns this
link Im having trouble converting the html entites into html characters, (&# 8217;) i
I am trying to understand how to use SyndicationItem to display feed which is
this is what i have right now Drawing an RSS feed into the php,
We're building an app, our first using Rails 3, and we're having to build
I am using Paperclip to handle profile photo uploads in my app. They upload
I'm new to using the Perl treebuilder module for HTML parsing and can't figure
That's pretty much it. I'm using Nokogiri to scrape a web page what has
I want to count how many characters a certain string has in PHP, but
I used javascript for loading a picture on my website depending on which small

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.