mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-31 21:41:33 +00:00
25 lines
592 B
C
25 lines
592 B
C
![]() |
//
|
||
|
// FeedDetailTableCell.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 7/14/10.
|
||
|
// Copyright 2010 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
|
||
|
|
||
|
@interface FeedDetailTableCell : UITableViewCell {
|
||
|
UILabel *storyTitle;
|
||
|
UILabel *storyAuthor;
|
||
|
UILabel *storyDate;
|
||
|
UIImageView *storyUnreadIndicator;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *storyTitle;
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *storyAuthor;
|
||
|
@property (nonatomic, retain) IBOutlet UILabel *storyDate;
|
||
|
@property (nonatomic, retain) IBOutlet UIImageView *storyUnreadIndicator;
|
||
|
|
||
|
@end
|