-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathBT-DEMO.h
111 lines (88 loc) · 2.06 KB
/
BT-DEMO.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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/**
*
* This file allows you to select which modules are included in
* your XCode build. This allows you to ignore modules that you
* don't want to use which have annoying dependencies.
*
* Include a module by changing 0 to 1.
*
* Add any dependencies described next to the module.
*
* Be sure to remove the top & bottom lines, otherwize this file is ignored
*
*
* POSSIBLE DEPENDENCIES:
*
* SBJSON: https://github.com/stig/json-framework/
*
* RegexKitLite: http://regexkit.sourceforge.net
*
* ASIHttpRequest: http://allseeing-i.com/ASIHTTPRequest/Setup-instructions
*
* facebook-ios-sdk: https://github.com/facebook/facebook-ios-sdk
*
*/
/**
* BASIC EXTENSIONS
*
* Categories on populate types like NSString, UIView, NSArray, etc.
* Lots of random UI elements like prompts (alerts with textboxes), fullscreen
* loading spinners, and more.
*
* Dependencies: None
*/
#define BT_BASICS 1
#import "BT-CustomArray.h"
#import "BT-NSArray.h"
#import "BT-NSMutableArray.h"
#import "BT-NSObject.h"
#import "BT-NSString.h"
#import "BT-NSDate.h"
#import "BT-FuzzyTime.h"
#import "BT-Reflection.h"
#import "BT-CoreTypeConversion.h"
#import "BT-UIView.h"
#import "BT-UIWebView.h"
#import "BT-Device.h"
#import "BT-UUID.h"
#import "BT-Links.h"
#import "BT-ExpandoController.h"
#import "BT-Alert.h"
#import "BT-Prompt.h"
#import "BT-AppSettings.h"
#import "BT-Loading.h"
#import "BT-Callback.h"
#import "BT-Image.h"
#import "BT-UILabel.h"
#import "BT-Logger.h"
#import "BT-JavaScript.h"
#import "BT-Confirm.h"
#import "BT-Macros.h"
#import "BT-Modal.h"
/**
* JSON
*
* Serialize and deserialize custom objects to/from JSON.
*
* Dependencies: SBJSON
*/
#define BT_JSON 1
#import "BT-JSON.h"
/**
* CORE DATA
*
* Extremely easy access to core data.
*
* Dependencies: The Core Data Framework
*/
#define BT_CD 1
#import "BT-CD.h"
/**
* LOCATION
*
* Making location & zip code stuff easier.
*
* Dependencies: The Core Location Framework, Map Kit
*/
#define BT_LOCATION 1
#import "BT-ZipCodeFinder.h"