Mobile API Reference  MicroStrategy 2019
PromptCalendarCell.h
Go to the documentation of this file.
1 //
2 // PromptCalendarCell.h
3 // MSTRMobile
4 //
5 // Created by Firat Alpergin on 3/2/10.
6 // Copyright 2010 MicroStrategy. All rights reserved.
7 //
8 
9 #import <UIKit/UIKit.h>
10 #import "PromptBaseCell.h"
11 #import "PromptSummaryScreen.h"
13 
14 #define IMAGE_WIDTH 31
15 #define CALENDAR_MIDDLE_PADDING 5
16 
17 @class PromptSummaryScreen, Prompt;
18 
20  UILabel *valueLabel;
21  UIImageView *calendarImageView;
22 
24 }
25 
26 @property (nonatomic, assign) PromptSummaryScreen *parent;
27 
28 +(PromptCalendarCell*)newCellForPrompt:(Prompt*)_prompt;
29 
30 -(void)dateSelectionDone:(NSDate *)newSelection;
31 -(void)dateSelectionCancelled;
32 
33 @end
Definition: PromptCalendarCell.h:19
PromptSummaryScreen * parent
Definition: PromptCalendarCell.h:23
UIImageView * calendarImageView
Definition: PromptCalendarCell.h:21
Definition: MSICalendarViewController.h:46
Definition: PromptSummaryScreen.h:18
Definition: PromptBaseCell.h:22
UILabel * valueLabel
Definition: PromptCalendarCell.h:20