All Projects → Fogh → AFWebViewController

Fogh / AFWebViewController

Licence: MIT license
In-app browser that uses WKWebView

Programming Languages

objective c
16641 projects - #2 most used programming language
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to AFWebViewController

QuickWebKit
A great & strong plugin based WebViewController. 一款基于插件的 WebView 视图控制器,您可以基于它设计您的浏览器插件,然后像积木一样来组装它们。
Stars: ✭ 29 (-23.68%)
Mutual labels:  webview, pod
Webview-unity-3d-2017.3-or-higher-
Webview unity 3d 2017.3 or higher - can be open website url on unity3d or open Html5, html and js on unity offline
Stars: ✭ 18 (-52.63%)
Mutual labels:  webview
Recaptcha
[In]visible ReCaptcha v2 for iOS
Stars: ✭ 208 (+447.37%)
Mutual labels:  webview
vue-js-bridge
vue-js-bridge for Vue.js
Stars: ✭ 41 (+7.89%)
Mutual labels:  webview
Cargo
🚂🚋🚋 A browser with almost no UI.
Stars: ✭ 221 (+481.58%)
Mutual labels:  webview
rn-webview-rpc
Add RPC capabilities to a React Native WebView component
Stars: ✭ 25 (-34.21%)
Mutual labels:  webview
Android Youtube Player
YouTube Player library for Android and Chromecast, stable and customizable.
Stars: ✭ 2,510 (+6505.26%)
Mutual labels:  webview
KaTeXView
KaTeX View for android
Stars: ✭ 43 (+13.16%)
Mutual labels:  webview
kubervisor
The Kubervisor allow you to control which pods should receive traffic or not based on anomaly detection.It is a new kind of health check system.
Stars: ✭ 35 (-7.89%)
Mutual labels:  pod
Android-WebView-in-Kotlin
Native Android WebView Example in Kotlin. Website to android app github open source template.
Stars: ✭ 87 (+128.95%)
Mutual labels:  webview
Google-Docs-for-Mac
Native Google Docs app for Mac
Stars: ✭ 33 (-13.16%)
Mutual labels:  webview
React Native Webview Messaging
✉️ Send/Receive data between React Native app and WebView
Stars: ✭ 251 (+560.53%)
Mutual labels:  webview
QuestionnaireView
A simple view to be able to display question and various field (Radio, EditText, checkbox ) for answers
Stars: ✭ 34 (-10.53%)
Mutual labels:  webview
React Native Webview Invoke
Invoke functions between React Native and WebView
Stars: ✭ 211 (+455.26%)
Mutual labels:  webview
FFDB
ORM database,is build on top of FMDB
Stars: ✭ 18 (-52.63%)
Mutual labels:  pod
Tauri
Build smaller, faster, and more secure desktop applications with a web frontend.
Stars: ✭ 25,383 (+66697.37%)
Mutual labels:  webview
qml-webchannel-websockets
QML examples for WebChannel and WebSockets.
Stars: ✭ 26 (-31.58%)
Mutual labels:  webview
WebViewNativeBridge
WebView bridge for android
Stars: ✭ 35 (-7.89%)
Mutual labels:  webview
EasyBrowser
尝试实现一个简易的Android浏览器。支持标签页的创建,切换,缓存。
Stars: ✭ 34 (-10.53%)
Mutual labels:  webview
WebView-Advanced
A collection of android webview hack
Stars: ✭ 25 (-34.21%)
Mutual labels:  webview

AFWebViewController

Pod version Pod platform Build Status

In-app browser

For apps targeting iOS 9 and greater you should be using SFSafariViewController.

Description

In-app browser for quick implementation in your app. Pretty much inspired by SVWebViewController. Uses WKWebView for a much faster browsing experience.

Requires iOS 8+

Installation with CocoaPods

Install with CocoaPods and import AFWebViewController.h or AFModalWebViewController.h where you want to use it.

Podfile

platform :ios, '8.0'
pod 'AFWebViewController', '~> 1.0'

Usage example

Push AFWebViewController:

AFWebViewController *webViewController = [AFWebViewController webViewControllerWithAddress:@"https://google.com"];
webViewController.toolbarTintColor = [UIColor orangeColor]; // Does not work on iPad
[self.navigationController pushViewController:webViewController animated:YES];

Modal AFWebViewController:

AFModalWebViewController *webViewController = [AFModalWebViewController webViewControllerWithAddress:@"https://google.com"];
webViewController.barsTintColor = [UIColor redColor];
webViewController.toolbarTintColor = [UIColor orangeColor]; // Does not work on iPad
[self presentViewController:webViewController animated:YES completion:NULL];
``
## Other iOS open source projects by me

- [AFAddressBookManager](https://github.com/Fogh/AFAddressBookManager)
- [AFMobilePayRequestHandler](https://github.com/Fogh/AFMobilePayRequestHandler)
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].