Mobile API Reference  MicroStrategy 2019
PromptTextCell.h
Go to the documentation of this file.
1 //
2 // PromptTextCell.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 2/25/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 #import "PromptBaseCell.h"
11 
12 #define TEXT_CELL_HEIGHT 44
13 
14 @class PromptBaseCell, ConstantPrompt;
15 
16 @interface PromptTextCell : PromptBaseCell <UITextFieldDelegate> {
17  UITextField *valueField;
18 }
19 +(PromptTextCell*)newCellForPrompt:(ConstantPrompt*)_prompt;
20 
21 @end
UITextField * valueField
Definition: PromptTextCell.h:17
Definition: PromptTextCell.h:16
Definition: PromptBaseCell.h:22