mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-04-13 09:42:01 +00:00
28 lines
637 B
C
28 lines
637 B
C
![]() |
//
|
||
|
// OriginalStoryViewController.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 11/13/10.
|
||
|
// Copyright 2010 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface OriginalStoryViewController : UIViewController {
|
||
|
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
|
||
|
IBOutlet UIBarButtonItem * closeButton;
|
||
|
UIWebView *webView;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic, retain) IBOutlet UIBarButtonItem *closeButton;
|
||
|
@property (nonatomic, retain) IBOutlet UIWebView *webView;
|
||
|
|
||
|
- (IBAction) doCloseOriginalStoryViewController;
|
||
|
|
||
|
@end
|