NewsBlur/clients/ios/Classes/AuthorizeServicesViewController.h

32 lines
714 B
C
Raw Normal View History

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>
@import WebKit;
2012-08-10 21:10:32 -07:00
@class NewsBlurAppDelegate;
@interface AuthorizeServicesViewController : UIViewController <WKNavigationDelegate> {
2012-08-10 21:10:32 -07:00
NewsBlurAppDelegate *appDelegate;
NSString *url;
NSString *type;
BOOL fromStory;
2012-08-10 21:10:32 -07:00
}
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
@property (nonatomic) NSString *url;
@property (nonatomic) NSString *type;
@property (nonatomic, readwrite) BOOL fromStory;
2012-08-10 21:10:32 -07: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