NewsBlur/clients/ios/Classes/AuthorizeServicesViewController.h
David Sinclair 383384b6df #1270 (replacing UIWebView with WKWebView)
- All app-specific uses of UIWebView have been replaced with WKWebView.
- Some third-party uses remain.
- More testing required.
- Note that I’ve bumped the minimum iOS version to iOS 11, since that is needed for WKWebView support.
- Committing to a new branch until ready.
2020-02-23 15:21:32 -08:00

31 lines
714 B
Objective-C

//
// AuthorizeServicesViewController.h
// NewsBlur
//
// Created by Roy Yang on 8/10/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@import WebKit;
@class NewsBlurAppDelegate;
@interface AuthorizeServicesViewController : UIViewController <WKNavigationDelegate> {
NewsBlurAppDelegate *appDelegate;
NSString *url;
NSString *type;
BOOL fromStory;
}
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) NSString *url;
@property (nonatomic) NSString *type;
@property (nonatomic, readwrite) BOOL fromStory;
@property (weak, nonatomic) IBOutlet WKWebView *webView;
- (void)doCancelButton;
- (void)showError:(NSString *)error;
@end