mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
22 lines
410 B
C
22 lines
410 B
C
![]() |
//
|
||
|
// 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
|