Mobile API Reference  MicroStrategy 2019
PromptBaseCell.h
Go to the documentation of this file.
1 //
2 // PromptBaseCell.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 2/25/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 
11 #define TOP_PADDING 12
12 #define LEFT_PADDING 5
13 #define RIGHT_PADDING 5
14 #define ERROR_LABEL_HEIGHT 25
15 
16 @class Prompt;
17 
22 @interface PromptBaseCell : UITableViewCell {
23  Prompt *prompt;
24 
25  UILabel *titleLabel;
26  UILabel *errorLabel;
27  UILabel *requiredLabel;
28 }
29 
30 -(void)populate;
31 
35 - (void) addContent;
36 
41 - (NSInteger) addRequiredLabel;
42 
43 
47 - (void) addErrorMessage;
48 
49 -(NSInteger)rightMargin;
50 -(void)didRotateFromInterfaceOrientation;
51 
52 @property (nonatomic, retain) Prompt *prompt;
53 
54 @end
UILabel * titleLabel
Definition: PromptBaseCell.h:25
UILabel * requiredLabel
Definition: PromptBaseCell.h:27
Prompt * prompt
Definition: PromptBaseCell.h:23
Definition: PromptBaseCell.h:22
UILabel * errorLabel
Definition: PromptBaseCell.h:26