mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
37 lines
963 B
Objective-C
37 lines
963 B
Objective-C
//
|
|
// OriginalStoryViewController.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Samuel Clay on 11/13/10.
|
|
// Copyright 2010 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "BaseViewController.h"
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
@interface OriginalStoryViewController : BaseViewController
|
|
<UIActionSheetDelegate, UITextFieldDelegate, UIWebViewDelegate,
|
|
UIGestureRecognizerDelegate> {
|
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
NSString *activeUrl;
|
|
NSMutableArray *visitedUrls;
|
|
UIWebView *webView;
|
|
UIBarButtonItem *backBarButton;
|
|
UILabel *titleView;
|
|
}
|
|
|
|
@property (nonatomic) IBOutlet NewsBlurAppDelegate *appDelegate;
|
|
@property (nonatomic) IBOutlet UIWebView *webView;
|
|
|
|
- (void)loadInitialStory;
|
|
- (IBAction) doOpenActionSheet:(id)sender;
|
|
- (IBAction)loadAddress:(id)sender;
|
|
- (IBAction)webViewGoBack:(id)sender;
|
|
- (IBAction)webViewGoForward:(id)sender;
|
|
- (IBAction)webViewRefresh:(id)sender;
|
|
- (void)updateTitle:(UIWebView*)aWebView;
|
|
|
|
@end
|