NewsBlur/media/ios/Classes/FeedDetailTableCell.h

31 lines
680 B
C
Raw Normal View History

//
// FeedDetailTableCell.h
// NewsBlur
//
// Created by Samuel Clay on 7/14/10.
// Copyright 2010 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface FeedDetailTableCell : UITableViewCell {
// Feed view
UILabel *storyTitle;
UILabel *storyAuthor;
UILabel *storyDate;
UIImageView *storyUnreadIndicator;
// River view
UIView *feedGradient;
}
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;
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet UIView *feedGradient;
@end