The Mashable site is a mixture of a mobile web site (i.e. a web site that detects mobile devices, and delivers a variation of the HTML ideally suited for mobile devices) and a mobile app that is basically providing a standard UIWebView, a custom tool bar (with email, tweet, fb links, etc), and ads at the bottom.
It's not prudent to try to parse a standard web site to render a mobile-friendly rendition. You should start, first, with a proper mobile-friendly web site. (As evidence that this is what Mashable did, go to their web site in the iPhone Safari, and you'll notice that you enjoy much of the look and feel there, too.) Then, you can decide whether you also want to deploy an app to facilitate the navigation of this web site from the mobile device.
Personally, I believe that an app which is merely a thin wrapper around a UIWebView that navigates within some mobile-friendly web site is not terribly compelling. You need to offer the user some significant value proposition, something above and beyond the typical mobile web site. You have to justify the time and effort that the user went through to install your app. Just because you like them in your customized ecosystem of your native app, doesn't mean that it makes sense for them. You need to make it a worthwhile engagement for the user. (And with no offense to Mashable, theirs is probably a poor example. It doesn't feel like there's enough there. Some decent news apps, such as Bloomberg, The Economist, and maybe even the WSJ or NY Times might be a better example of a custom property offering enough UX benefits to justify using their apps.)
Setting aside this broader question, you asked a few tactical questions:
To get that customized title bar, you just create the controls to render that toolbar in your storyboard or NIB. Nothing terribly sophisticated there.
To only show particular web pages in your UIWebView, you should make your controller conform to UIWebViewDelegate, set your controller to be the delegate of the UIWebView, and implement shouldStartLoadWithRequest.