mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
22 lines
514 B
Objective-C
22 lines
514 B
Objective-C
//
|
|
// 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;
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UIWebView *webView;
|
|
|
|
- (IBAction)tapCancelButton:(id)sender;
|
|
@end
|