NewsBlur/media/ios/Classes/SiteCell.h
2012-08-14 17:20:45 -07:00

26 lines
No EOL
620 B
Objective-C

//
// SiteCell.h
// NewsBlur
//
// Created by Roy Yang on 8/14/12.
// Copyright (c) 2012 NewsBlur. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "NewsBlurAppDelegate.h"
#import "ABTableViewCell.h"
@interface SiteCell : ABTableViewCell {
NewsBlurAppDelegate *appDelegate;
// River view
NSString *siteTitle;
UIImage *siteFavicon;
UIColor *feedColorBar;
UIColor *feedColorBarTopBorder;
}
@property (nonatomic) NSString *siteTitle;
@property (nonatomic) UIImage *siteFavicon;
@property (nonatomic) UIColor *feedColorBar;
@property (nonatomic) UIColor *feedColorBarTopBorder;
@end