mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00

- 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.
31 lines
714 B
Objective-C
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
|