2010-06-25 18:36:01 -04:00
|
|
|
//
|
|
|
|
// StoryDetailViewController.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 6/24/10.
|
|
|
|
// Copyright 2010 __MyCompanyName__. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@class NewsBlurAppDelegate;
|
|
|
|
|
|
|
|
@interface StoryDetailViewController : UIViewController
|
2010-06-27 19:35:17 -04:00
|
|
|
<UIWebViewDelegate> {
|
2010-06-25 18:36:01 -04:00
|
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
|
2010-06-27 19:35:17 -04:00
|
|
|
UIWebView *webView;
|
2010-06-25 18:36:01 -04:00
|
|
|
}
|
|
|
|
|
2010-06-27 19:35:17 -04:00
|
|
|
@property (nonatomic, retain) IBOutlet UIWebView *webView;
|
2010-11-11 23:48:27 -05:00
|
|
|
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
|
2010-06-25 18:36:01 -04:00
|
|
|
|
2010-11-13 18:32:43 -05:00
|
|
|
- (void)showOriginalSubview:(id)sender;
|
|
|
|
|
2010-06-25 18:36:01 -04:00
|
|
|
@end
|