All Projects → geerlingguy → JJGWebView

geerlingguy / JJGWebView

Licence: other
UIWebView class and example implementation for iOS Applications

Programming Languages

objective c
16641 projects - #2 most used programming language
c
50402 projects - #5 most used programming language

Projects that are alternatives of or similar to JJGWebView

Manual-del-guerrero-movil-Phonegap
Ejemplos de código PhoneGap
Stars: ✭ 14 (-57.58%)
Mutual labels:  iphone
TranslucentMessages
Make the iOS Messages app translucent!
Stars: ✭ 18 (-45.45%)
Mutual labels:  iphone
DockController
Dock Controller - Control Your Dock
Stars: ✭ 18 (-45.45%)
Mutual labels:  iphone
ZudVPN
A mobile application to deploy private VPN servers in the cloud with DNS ad-blocking and other features
Stars: ✭ 119 (+260.61%)
Mutual labels:  iphone
TrendingCustomAlert
You can use a ready-made custom alert controller.
Stars: ✭ 25 (-24.24%)
Mutual labels:  iphone
Covid-19 Ampel
Covid-19_Ampel | Zeigt neben der 7-Tage-Inzidenz weitere Infos zu einer Region.
Stars: ✭ 33 (+0%)
Mutual labels:  iphone
iOSShortcuts
A collection of shortcuts for the Shortcuts app.
Stars: ✭ 60 (+81.82%)
Mutual labels:  iphone
Customized-Popup
Customized popup provides you independency related to how you want to show a popup according to your UX.
Stars: ✭ 13 (-60.61%)
Mutual labels:  iphone
iPatch
Patch iPA Files With Dynamic Libraries
Stars: ✭ 29 (-12.12%)
Mutual labels:  iphone
TOFileSystemObserver
A bullet-proof mechanism for detecting any changes made to the contents of a folder in iOS and macOS.
Stars: ✭ 35 (+6.06%)
Mutual labels:  iphone
iphone-shortcut-library
Apple iphone IOS 捷径 app 库(Apple Iphone IOS shortcut Library)
Stars: ✭ 42 (+27.27%)
Mutual labels:  iphone
Apple-Store-Reserve-Monitor
Monitor status of the iPhone, iPad, and Apple Watch stock availability worldwide.
Stars: ✭ 71 (+115.15%)
Mutual labels:  iphone
eve-of-impact
🌍☄️ Eve of Impact iOS game source code
Stars: ✭ 32 (-3.03%)
Mutual labels:  iphone
YMTGetDeviceName
Get device name from model number
Stars: ✭ 27 (-18.18%)
Mutual labels:  iphone
Whatsapp-Chat-Exporter
A customizable Android and iPhone WhatsApp database parser that will give you the history of your WhatsApp conversations in HTML and JSON. Android Backup Crypt12, Crypt14 and Crypt15 supported.
Stars: ✭ 150 (+354.55%)
Mutual labels:  iphone
HorizontalTimesLayout
Layout to display time slots in horizontal 24 hour format
Stars: ✭ 31 (-6.06%)
Mutual labels:  iphone
SketchAR
SketchUp model into ARKit. Use SketchUp home remodel and Apple's ARKit (beta) for augmented reality. Goal: import a model (in this case, a remodel) to overlay onto existing real world that you can walk around and 'experience' and compare.
Stars: ✭ 41 (+24.24%)
Mutual labels:  iphone
avantindietro
Sample Swift iOS ARKit project which shows how to implement an Undo feature for ARKit/SceneKit apps.
Stars: ✭ 16 (-51.52%)
Mutual labels:  iphone
NDILiteSenderPlugin
NDI™ send-only plugin for Unity macOS/iOS
Stars: ✭ 49 (+48.48%)
Mutual labels:  iphone
rvi capture
rvictl for Linux and Windows: capture packets sent/received by iOS devices
Stars: ✭ 124 (+275.76%)
Mutual labels:  iphone

JJGWebView

JJGWebView Example on iPhone

This is an iPhone, iPod Touch, and iPad UIWebView implementation for reuse in iOS Apps, highlighting methods and design for a usable and intuitive in-app browser.

Usage

Look inside JJGWebViewViewController.m for implementation details. Basically, if you're using a Table View inside a Navigation Controller, you can just pop a JJGWebView on your navigation stack, and the class will take care of the rest.

// Import JJGWebView.h (at the top of your class).
#import "JJGWebView.h"

// Open a link in JJGWebView.
JJGWebView *webViewToPush = [[JJGWebView alloc] initWithNibName:@"JJGWebView" bundle:nil];
webViewToPush.title = @"Title Here";
webViewToPush.webViewURL = [NSURL URLWithString:@"http://www.example.com/"];
[self.navigationController pushViewController:jjgWebView animated:YES];

You would normally do this inside a didSelectRowAtIndexPath: (in table view) or calloutAccessoryTapped: (in map view) method.

Issues

Please file bug reports, feature requests, and patches on GitHub: https://github.com/geerlingguy/JJGWebView/issues

More Information

More information: http://www.midwesternmac.com/jjgwebview

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].