summaryrefslogtreecommitdiffstats
path: root/Classes/TopicTableViewCell.h
blob: a78b3a541caaaf9bc52a6b35c3a4b052a9acf710 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
//
//  TopicTableViewCell.h
//  acidcow
//
//  Created by Matthew Handler on 4/15/11.
//  Copyright 2011 Earl Industries. All rights reserved.
//

#import <UIKit/UIKit.h>


@interface TopicTableViewCell : UITableViewCell {
	NSString *title;
	NSString *iconUrl;
	NSString *picCount;
	BOOL useDarkBackground;
	
	IBOutlet UILabel *titleLabel;
	IBOutlet UILabel *categoryLabel;
	IBOutlet UILabel *picCountLabel;
	IBOutlet UIImageView *icon;
	IBOutlet UIImageView *gradient;
}
@property BOOL useDarkBackground;
@property (nonatomic, retain) UIImageView *gradient;
@property (nonatomic, retain) UILabel *titleLabel;
@property (nonatomic, retain) UILabel *categoryLabel;
@property (nonatomic, retain) UIImageView *icon;
@property (nonatomic, retain) UILabel *picCountLabel;
@property (retain) NSString *picCount;
@property (retain) NSString *iconUrl;
@property (retain) NSString *title;

@end