NewsBlur/media/ios/Classes/AuthorizeServicesViewController.h

29 lines
670 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>
@class NewsBlurAppDelegate;
@interface AuthorizeServicesViewController : UIViewController <UIWebViewDelegate> {
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 UIWebView *webView;
2012-08-12 20:09:45 -07:00
- (void)showError:(NSString *)error;
2012-08-10 21:10:32 -07:00
@end