-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathTiCalendarView.h
41 lines (32 loc) · 1019 Bytes
/
TiCalendarView.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/**
* Appcelerator Titanium Mobile
* Copyright (c) 2009-2010 by Appcelerator, Inc. All Rights Reserved.
* Licensed under the terms of the Apache Public License
* Please see the LICENSE included with this distribution for details.
*/
#import "TiUIView.h"
#import <MapKit/MapKit.h>
#import "KLCalendarView.h"
#import "KLTile.h"
#import "CheckmarkTile.h"
@interface TiCalendarView : TiUIView<KLCalendarViewDelegate, UITableViewDelegate, UITableViewDataSource> {
@private
MKMapView *map;
KLCalendarView *calendarView;
KLTile *currentTile;
UITableView *myTableView;
NSMutableArray *tableViewData;
KLTile *tile;
BOOL shouldPushAnotherView;
NSMutableArray* dates;
NSNumber* month;
}
@property(nonatomic, retain) NSArray* dates;
@property(nonatomic, retain) NSNumber* month;
- (void) setDatesArray: (NSArray*) datesArray;
- (void) setMonth: (NSNumber*) value;
- (void) setCalendarColor_: (id) color;
- (void) setHeaderColor_: (id) color;
- (bool) dateChecked: (KLDate*) date;
//-(UIView*) calendar;
@end