2012-08-10 21:10:32 -07:00
|
|
|
//
|
|
|
|
// AuthorizeServicesViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Roy Yang on 8/10/12.
|
|
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
2020-02-23 15:21:32 -08:00
|
|
|
@import WebKit;
|
2012-08-10 21:10:32 -07:00
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
2020-02-23 15:21:32 -08:00
|
|
|
@interface AuthorizeServicesViewController : UIViewController <WKNavigationDelegate> {
|
2012-08-10 21:10:32 -07:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
NSString *url;
|
2013-03-04 20:21:29 -08:00
|
|
|
NSString *type;
|
|
|
|
BOOL fromStory;
|
2012-08-10 21:10:32 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) NSString *url;
|
|
|
|
@property (nonatomic) NSString *type;
|
2013-03-04 20:21:29 -08:00
|
|
|
@property (nonatomic, readwrite) BOOL fromStory;
|
2012-08-10 21:10:32 -07:00
|
|
|
|
2020-02-23 15:21:32 -08:00
|
|
|
@property (weak, nonatomic) IBOutlet WKWebView *webView;
|
2012-08-10 21:10:32 -07:00
|
|
|
|
2013-03-05 08:49:37 -08:00
|
|
|
- (void)doCancelButton;
|
2012-08-12 20:09:45 -07:00
|
|
|
- (void)showError:(NSString *)error;
|
2013-03-05 08:49:37 -08:00
|
|
|
|
2012-08-10 21:10:32 -07:00
|
|
|
@end
|