NewsBlur/media/iphone/Classes/FeedDetailViewController.h

38 lines
941 B
C
Raw Normal View History

//
// FeedDetailViewController.h
// NewsBlur
//
// Created by Samuel Clay on 6/20/10.
// Copyright 2010 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@class NewsBlurAppDelegate;
@interface FeedDetailViewController : UIViewController
<UITableViewDelegate, UITableViewDataSource> {
NewsBlurAppDelegate *appDelegate;
NSArray * stories;
NSMutableData * jsonString;
UITableView * storyTitlesTable;
UIToolbar * feedViewToolbar;
UISlider * feedScoreSlider;
}
- (void)fetchFeedDetail;
@property (nonatomic, retain) IBOutlet NewsBlurAppDelegate *appDelegate;
@property (nonatomic, retain) IBOutlet UITableView *storyTitlesTable;
@property (nonatomic, retain) IBOutlet UIToolbar *feedViewToolbar;
@property (nonatomic, retain) IBOutlet UISlider * feedScoreSlider;
@property (nonatomic, retain) NSArray * stories;
@property (nonatomic, retain) NSMutableData * jsonString;
@end