A Simple iOS Web Browser

  • Category: Code

A simple web browser with a few customization options. There’s no documentation at this point, but the gist is pretty simple. There’s plenty that could be done to make it better, but it’s functional. Requires ARC. JHWebBrowser *browser = [JHWebBrowser new]; browser.url = [NSURL URLWithString:@”http://apple.com”]; You can show/remove toolbars with the following browser.showTitleBar = YES; […]

view post

Full Width Tumblr Photosets

  • Category: Code

A while back I needed a way to display Tumblr photosets wider than 500px, the maximum width supported out of the box. Instead of writing my own viewer which would need to be updated any time Tumblr released new layouts, I wrote a JQuery plugin that would expand existing photosets to the width of their […]

view post