mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
35 lines
841 B
Objective-C
35 lines
841 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"
|
|
#import "NewsBlur-Swift.h"
|
|
|
|
@interface SiteCell : ABTableViewCell {
|
|
NewsBlurAppDelegate *appDelegate;
|
|
// River view
|
|
NSString *siteTitle;
|
|
UIImage *siteFavicon;
|
|
UIColor *feedColorBar;
|
|
UIColor *feedColorBarTopBorder;
|
|
|
|
BOOL hasAlpha;
|
|
BOOL isRead;
|
|
}
|
|
|
|
@property (nonatomic) NSString *siteTitle;
|
|
@property (nonatomic) UIImage *siteFavicon;
|
|
@property (nonatomic) UIColor *feedColorBar;
|
|
@property (nonatomic) UIColor *feedColorBarTopBorder;
|
|
|
|
@property (readwrite) BOOL hasAlpha;
|
|
@property (readwrite) BOOL isRead;
|
|
|
|
- (UIImage *)imageByApplyingAlpha:(UIImage *)image withAlpha:(CGFloat) alpha;
|
|
|
|
@end
|