Mobile API Reference  MicroStrategy 2019
PromptSwitchCell.h
Go to the documentation of this file.
1 //
2 // PromptSwitchCell.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 #import "PromptBaseCell.h"
11 
12 #define SWITCH_WIDTH 100;
13 #define SWITCH_CELL_HEIGHT 44
14 
15 @class ConstantPrompt;
16 
18  UISwitch *valueSwitch;
19  NSString *onValue;
20  NSString *offValue;
21 }
22 
23 +(PromptSwitchCell*)newCellForPrompt:(ConstantPrompt*)prompt;
24 @end
UISwitch * valueSwitch
Definition: PromptSwitchCell.h:18
NSString * offValue
Definition: PromptSwitchCell.h:20
Definition: PromptSwitchCell.h:17
Definition: PromptBaseCell.h:22
NSString * onValue
Definition: PromptSwitchCell.h:19