Mobile API Reference  MicroStrategy 2019
BucketCell.h
Go to the documentation of this file.
1 //
2 // BucketCell.h
3 // CalendarUIPrototype
4 //
5 // Created by Firat Alpergin on 4/14/11.
6 // Copyright 2011 MicroStrategy Incorporated. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "BucketCellUIHelper.h"
11 @class BucketCell;
12 
13 @protocol BucketCellDelegate <NSObject>
14 
15 @optional
16 
17 - (void)cellDelete:(BucketCell *)cell;
18 @end
19 
20 @class BucketElement;
21 
22 //@class MIDynamicExpandableTableViewCell;
23 
24 @interface BucketCell : UITableViewCell {
25  @private
26  UIImageView *imageView;
27  UILabel *nameLabel;
28  BOOL beingTapped;
31 
32  id<BucketCellDelegate> __weak delegate;
33  BucketCellUIHelper* bucketCellUIhelper;
34 
35  UIImageView *dividerLine;
36 }
37 
38 @property(nonatomic, weak) id<BucketCellDelegate> delegate;
39 @property(nonatomic, strong) BucketElement *element;
40 
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;
47 
48 @end
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