blob: 583d56c7309a0ae38345150167a17bb852e20ed3 (
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
|
//
// 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 *picCountLabel;
IBOutlet UIImageView *icon;
IBOutlet UIImageView *gradient;
}
@property BOOL useDarkBackground;
@property (nonatomic, retain) UIImageView *gradient;
@property (nonatomic, retain) UILabel *titleLabel;
@property (nonatomic, retain) UIImageView *icon;
@property (nonatomic, retain) UILabel *picCountLabel;
@property (retain) NSString *picCount;
@property (retain) NSString *iconUrl;
@property (retain) NSString *title;
@end
|