// // TopicTableViewCell.h // acidcow // // Created by Matthew Handler on 4/15/11. // Copyright 2011 Earl Industries. All rights reserved. // #import @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