mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
37 lines
704 B
Objective-C
37 lines
704 B
Objective-C
//
|
|
// 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;
|
|
@synthesize feedGradient;
|
|
|
|
- (id)initWithStyle:(UITableViewCellStyle)style
|
|
reuseIdentifier:(NSString *)reuseIdentifier {
|
|
if ((self = [super initWithStyle:style reuseIdentifier:reuseIdentifier])) {
|
|
// Initialization code
|
|
}
|
|
return self;
|
|
}
|
|
|
|
|
|
- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
|
|
|
|
[super setSelected:selected animated:animated];
|
|
}
|
|
|
|
|
|
|
|
|
|
@end
|