mirror of
https://github.com/viq/NewsBlur.git
synced 2025-08-05 16:49:45 +00:00
26 lines
620 B
C
26 lines
620 B
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
|