9 #import <UIKit/UIKit.h> 13 @protocol BucketCellDelegate <NSObject>
32 id<BucketCellDelegate> __weak delegate;
38 @property(nonatomic, weak) id<BucketCellDelegate> delegate;
41 @property BOOL isSelected;
42 @property(nonatomic) UIImageView *imageView;
43 @property(nonatomic) UILabel *nameLabel;
44 @property(nonatomic) UIImageView *dividerLine;
45 - (id)initWithStyle:(UITableViewCellStyle)style selected:(
BOOL)cellSelected element:(
BucketElement *)elem UIHelper:(
UIHelper*)uihelper;
46 -(id)initWithStyle:(UITableViewCellStyle)style selected:(
BOOL)cellSelected element:(
BucketElement *)elem;
Definition: BucketCell.h:24
UIImageView * dividerLine
Definition: BucketCell.h:35
signed char BOOL
Definition: PDCwtypes.h:101
Definition: BucketElement.h:13
Definition: UIHelper.h:15
BucketElement * element
Definition: BucketCell.h:30
Definition: BucketCellUIHelper.h:11
UILabel * nameLabel
Definition: BucketCell.h:27
BOOL isSelected
Definition: BucketCell.h:29
UIImageView * imageView
Definition: BucketCell.h:26