NewsBlur/media/ios/Classes/FeedDetailTableCell.h

36 lines
847 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 {
2012-07-22 14:23:50 -07:00
// All views
UILabel *storyTitle;
UILabel *storyAuthor;
UILabel *storyDate;
UIImageView *storyUnreadIndicator;
2012-07-22 14:23:50 -07:00
// River view
UILabel *siteTitle;
UIImageView *siteFavicon;
UIView *feedGradient;
}
2012-07-22 14:23:50 -07:00
@property (nonatomic) IBOutlet UIView *feedGradient;
@property (nonatomic) IBOutlet UILabel *siteTitle;
@property (nonatomic) IBOutlet UIImageView *siteFavicon;
@property (nonatomic) IBOutlet UIImageView *storyUnreadIndicator;
2012-07-15 15:06:06 -07:00
@property (nonatomic) IBOutlet UILabel *storyTitle;
@property (nonatomic) IBOutlet UILabel *storyAuthor;
@property (nonatomic) IBOutlet UILabel *storyDate;
@end