summaryrefslogtreecommitdiffstats
path: root/Classes/TopicTableViewCell.h
diff options
context:
space:
mode:
Diffstat (limited to 'Classes/TopicTableViewCell.h')
-rw-r--r--Classes/TopicTableViewCell.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/Classes/TopicTableViewCell.h b/Classes/TopicTableViewCell.h
new file mode 100644
index 0000000..583d56c
--- /dev/null
+++ b/Classes/TopicTableViewCell.h
@@ -0,0 +1,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