FreeRDP
Loading...
Searching...
No Matches
AboutController.h
1/*
2 Application info controller
3
4 Copyright 2013 Thincast Technologies GmbH, Author: Martin Fleisz
5
6 This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
7 If a copy of the MPL was not distributed with this file, You can obtain one at
8 http://mozilla.org/MPL/2.0/.
9 */
10
11#import <UIKit/UIKit.h>
12#import <WebKit/WebKit.h>
13
14// UIWebView (deprecated) --> WKWebView
15@interface AboutController : UIViewController <WKNavigationDelegate>
16{
17 NSString *last_link_clicked;
18 WKWebView *webView;
19}
20
21@end