mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
41 lines
1.1 KiB
C
41 lines
1.1 KiB
C
![]() |
//
|
||
|
// FeedTableCell.h
|
||
|
// NewsBlur
|
||
|
//
|
||
|
// Created by Samuel Clay on 7/18/11.
|
||
|
// Copyright 2011 NewsBlur. All rights reserved.
|
||
|
//
|
||
|
|
||
|
#import <UIKit/UIKit.h>
|
||
|
#import "NewsBlurAppDelegate.h"
|
||
|
#import "ABTableViewCell.h"
|
||
|
|
||
|
@class NewsBlurAppDelegate;
|
||
|
|
||
|
@interface FeedTableCell : ABTableViewCell {
|
||
|
NewsBlurAppDelegate *appDelegate;
|
||
|
|
||
|
NSString *feedTitle;
|
||
|
UIImage *feedFavicon;
|
||
|
int _positiveCount;
|
||
|
int _neutralCount;
|
||
|
int _negativeCount;
|
||
|
NSString *_positiveCountStr;
|
||
|
NSString *_neutralCountStr;
|
||
|
NSString *_negativeCountStr;
|
||
|
BOOL isSocial;
|
||
|
}
|
||
|
|
||
|
@property (nonatomic, retain) NewsBlurAppDelegate *appDelegate;
|
||
|
@property (nonatomic, retain) NSString *feedTitle;
|
||
|
@property (nonatomic, retain) UIImage *feedFavicon;
|
||
|
@property (assign, nonatomic) int positiveCount;
|
||
|
@property (assign, nonatomic) int neutralCount;
|
||
|
@property (assign, nonatomic) int negativeCount;
|
||
|
@property (assign, nonatomic) BOOL isSocial;
|
||
|
@property (nonatomic, retain) NSString *positiveCountStr;
|
||
|
@property (nonatomic, retain) NSString *neutralCountStr;
|
||
|
@property (nonatomic, retain) NSString *negativeCountStr;
|
||
|
|
||
|
@end
|