mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
31 lines
843 B
C
31 lines
843 B
C
![]() |
//
|
||
|
// 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;
|
||
|
|
||
|
NSDictionary * activeFeed;
|
||
|
|
||
|
UITableView * storyTitlesTable;
|
||
|
UIToolbar * feedViewToolbar;
|
||
|
UISlider * feedScoreSlider;
|
||
|
}
|
||
|
|
||
|
@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) NSDictionary * activeFeed;
|
||
|
|
||
|
@end
|