I have created a simple webview in which I am trying to display an RSS feed that displays nicely on the iphone.
the URL is: feed://news.newmanu.edu/feed/atom/
However, in my UIWebView, when I open the page the application is abandoned and the site launches in the safari browser. Definitely not what I want!
The simple code I am using is:
[EmployWeb loadRequest:[NSURLRequest requestWithURL: [NSURL URLWithString:@"feed://news.newmanu.edu/feed/atom/"]]];
Please help!
