2010-07-15 00:44:38 -04:00
|
|
|
//
|
|
|
|
// FeedDetailTableCell.h
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 7/14/10.
|
|
|
|
// Copyright 2010 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
|
|
|
|
@interface FeedDetailTableCell : UITableViewCell {
|
2011-10-25 09:28:05 -07:00
|
|
|
// Feed view
|
2010-07-15 00:44:38 -04:00
|
|
|
UILabel *storyTitle;
|
|
|
|
UILabel *storyAuthor;
|
|
|
|
UILabel *storyDate;
|
|
|
|
UIImageView *storyUnreadIndicator;
|
2011-10-25 09:28:05 -07:00
|
|
|
|
|
|
|
// River view
|
2011-10-28 18:29:33 -07:00
|
|
|
UIView *feedGradient;
|
2010-07-15 00:44:38 -04:00
|
|
|
}
|
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet UILabel *storyTitle;
|
|
|
|
@property (nonatomic) IBOutlet UILabel *storyAuthor;
|
|
|
|
@property (nonatomic) IBOutlet UILabel *storyDate;
|
|
|
|
@property (nonatomic) IBOutlet UIImageView *storyUnreadIndicator;
|
2010-07-15 00:44:38 -04:00
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) IBOutlet UIView *feedGradient;
|
2011-10-25 09:28:05 -07:00
|
|
|
|
2010-07-15 00:44:38 -04:00
|
|
|
@end
|