2012-06-29 10:20:06 -07:00
|
|
|
//
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) NewsBlurAppDelegate *appDelegate;
|
|
|
|
@property (nonatomic) NSString *feedTitle;
|
|
|
|
@property (nonatomic) UIImage *feedFavicon;
|
2012-06-29 10:20:06 -07:00
|
|
|
@property (assign, nonatomic) int positiveCount;
|
|
|
|
@property (assign, nonatomic) int neutralCount;
|
|
|
|
@property (assign, nonatomic) int negativeCount;
|
|
|
|
@property (assign, nonatomic) BOOL isSocial;
|
2012-07-15 15:06:06 -07:00
|
|
|
@property (nonatomic) NSString *positiveCountStr;
|
|
|
|
@property (nonatomic) NSString *neutralCountStr;
|
|
|
|
@property (nonatomic) NSString *negativeCountStr;
|
2012-06-29 10:20:06 -07:00
|
|
|
|
|
|
|
@end
|