Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tokuhirom/thwebviewcontroller
Minimalistic WebViewController
https://github.com/tokuhirom/thwebviewcontroller
Last synced: 18 days ago
JSON representation
Minimalistic WebViewController
- Host: GitHub
- URL: https://github.com/tokuhirom/thwebviewcontroller
- Owner: tokuhirom
- License: apache-2.0
- Created: 2012-01-07T04:54:22.000Z (almost 13 years ago)
- Default Branch: master
- Last Pushed: 2013-10-28T08:36:03.000Z (about 11 years ago)
- Last Synced: 2024-10-17T23:12:52.923Z (28 days ago)
- Language: Objective-C
- Homepage:
- Size: 350 KB
- Stars: 20
- Watchers: 4
- Forks: 9
- Open Issues: 1
-
Metadata Files:
- Readme: README.mkdn
- License: LICENSE
Awesome Lists containing this project
README
THWebViewController - Tiny implementation of WebViewController
==============================================================![Snapshot](https://github.com/tokuhirom/THWebViewController/raw/master/snapshot.png)
DESCRIPTION
-----------This is a tiny library for iOS(iPhone/iPad).
This library only provides one class named THWebViewController.
So it's same as TTWebViewController and NIWebViewController.
Yes, THWebViewController is forked from NIWebViewController.You can drop in 1 header, 1 code, 1 bundles, that's all.
Very easy.I don't like large application frameworks for iOS application.
Since I'm minimalist.SYNOPSIS
--------THWebViewController * webController = [[THWebViewController alloc] init];
[webController openURL:[NSURL URLWithString:@"http://tou.ch/"]];
[self.navigationController pushViewController:webController
animated:YES];DEPENDENCIES
------------There is no dependencies.
SUBCLASSING
-----------THWebViewController supports subclassing.
THWebViewController is UIViewController < UIWebViewDelegate, UIActionSheetDelegate >.
You can override following methods in your subclass.
* UIWebViewDelegate
* - webView:shouldStartLoadWithRequest:navigationType:
* - webViewDidStartLoad:
* - webViewDidFinishLoad:
* - webView:didFailLoadWithError:
* UIActionSheetDelegate
* - actionSheet:clickedButtonAtIndex:
* - actionSheet:didDismissWithButtonIndex:CREDITS
-------LICENSE
-------Apache License(Same as nimbus, three20)
For more details, please read LICENSE file.