NewsBlur/media/ios/Classes/GoogleReaderViewController.h

23 lines
514 B
C
Raw Normal View History

2012-06-15 16:35:54 -07:00
//
// GoogleReaderViewController.h
// NewsBlur
//
// Created by Roy Yang on 6/15/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
@class NewsBlurAppDelegate;
@interface GoogleReaderViewController : UIViewController <UIWebViewDelegate> {
NewsBlurAppDelegate *appDelegate;
}
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic) IBOutlet UIWebView *webView;
2012-06-15 16:35:54 -07:00
- (IBAction)tapCancelButton:(id)sender;
2012-06-15 16:35:54 -07:00
@end