mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
34 lines
717 B
Objective-C
34 lines
717 B
Objective-C
//
|
|
// AddSiteTableCell.h
|
|
// NewsBlur
|
|
//
|
|
// Created by Roy Yang on 8/7/12.
|
|
// Copyright (c) 2012 NewsBlur. All rights reserved.
|
|
//
|
|
|
|
#import "ABTableViewCell.h"
|
|
|
|
@interface AddSiteTableCell : ABTableViewCell {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
|
|
NSString *siteTitle;
|
|
NSString *siteUrl;
|
|
NSString *siteSubscribers;
|
|
|
|
UIImage *siteFavicon;
|
|
|
|
UIColor *feedColorBar;
|
|
UIColor *feedColorBarTopBorder;
|
|
}
|
|
|
|
@property (nonatomic) NSString *siteTitle;
|
|
@property (nonatomic) NSString *siteUrl;
|
|
@property (nonatomic) NSString *siteSubscribers;
|
|
@property (nonatomic) UIImage *siteFavicon;
|
|
|
|
@property (nonatomic) UIColor *feedColorBar;
|
|
@property (nonatomic) UIColor *feedColorBarTopBorder;
|
|
|
|
|
|
|
|
@end
|