NewsBlur/media/iphone/Classes/StoryDetailViewController.h

22 lines
410 B
C
Raw Normal View History

//
// 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
<UIScrollViewDelegate> {
NewsBlurAppDelegate *appDelegate;
}
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
@end