In the past I’ve mentioned some UIWebView alternatives most recently TOWebViewController and DZWebBrowser.
Here’s a library providing a UIWebView subclass adding a number of nice features called OTMWebView from Otium.
OTMWebView adds features for response handling, progress tracking, detecting title changes, and the setting of user agents to the web view.
Here’s a code snippet from the readme showing how to use the response handling capability:
<pre><code>if ([response.MIMEType isEqualToString:@"video/mp4"]) {
[webView stopLoading];
// Do something else…
}
</code></pre>
}
You can find OTMWebView on Github here.
A nice UIWebView enhancement.
- Open Source iOS Library For Adding Basic Touch Handling To A UIView Instantly
- Open Source Library That Makes Objective-C And UIWebView Interaction More Convenient
- An Open Source Library That Makes Working With JSON Data Using Swift Much Easier
- Open Source: Library For Easily Communicating With Objective-C Code From A UIWebView
- Open Source: Library For Easily Playing A Youtube Video In An MPMoviePlayer
Original article: Open Source UIWebView Library Adding Response Handling, User Agent Setting And More
©2014 iOS App Dev Libraries, Controls, Tutorials, Examples and Tools. All Rights Reserved.




