Is there a template XCode project I can use for making an iOS app that just shows a webpage?

ios, iphone, uiwebview

Solution

No, Xcode does not provide such a template. You can, however, use the "Single View Application" template and it should be pretty easy to do with Storyboards.

Here's a tutorial: http://www.youtube.com/watch?v=bGPJeYxWr3Y

Problem

I want to make an iPhone/iOS app that, when opened, simply launches a UIWebView with a particular page and does nothing else. Is there a template XCode project I can use to help accelerate the process for me a little?

Original source