2010-07-15 00:44:38 -04:00
|
|
|
//
|
|
|
|
// FeedDetailTableCell.m
|
|
|
|
// NewsBlur
|
|
|
|
//
|
|
|
|
// Created by Samuel Clay on 7/14/10.
|
|
|
|
// Copyright 2010 NewsBlur. All rights reserved.
|
|
|
|
//
|
|
|
|
|
|
|
|
#import "FeedDetailTableCell.h"
|
|
|
|
|
|
|
|
|
|
|
|
@implementation FeedDetailTableCell
|
|
|
|
|
|
|
|
@synthesize storyTitle;
|
|
|
|
@synthesize storyAuthor;
|
|
|
|
@synthesize storyDate;
|
|
|
|
@synthesize storyUnreadIndicator;
|
2012-07-22 14:23:50 -07:00
|
|
|
@synthesize siteTitle;
|
|
|
|
@synthesize siteFavicon;
|
2011-10-27 19:05:38 -07:00
|
|
|
@synthesize feedGradient;
|
2010-07-15 00:44:38 -04:00
|
|
|
|
2011-08-13 23:00:51 -07:00
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style
|
|
|
|
reuseIdentifier:(NSString *)reuseIdentifier {
|
2010-07-15 00:44:38 -04:00
|
|
|
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
|
|
|
|
// Initialization code
|
|
|
|
}
|
|
|
|
return self;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
|
|
|
|
|
|
[super setSelected:selected animated:animated];
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@end
|