-
Notifications
You must be signed in to change notification settings - Fork 0
/
AllowanceAppDelegate.h
41 lines (35 loc) · 1.16 KB
/
AllowanceAppDelegate.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
//
// AllowanceAppDelegate.h
// Allowance
//
// Created by Pablo Collins on 6/10/10.
//
#import <UIKit/UIKit.h>
#import <CoreData/CoreData.h>
#import "Kid.h"
@interface AllowanceAppDelegate : NSObject <UIApplicationDelegate> {
UIWindow *window;
UINavigationController *__unsafe_unretained navController;
Kid *__unsafe_unretained kid;
}
@property (nonatomic, strong) IBOutlet UIWindow *window;
@property (nonatomic, unsafe_unretained) IBOutlet UINavigationController *navController;
@property (nonatomic, unsafe_unretained) Kid *kid;
+ (Kid *)currentKid;
+ (void)setCurrentKid:(Kid *)kid;
+ (int)paymentDay;
+ (NSString *)delimiter;
+ (NSString *)currency;
+ (Account *)masterAccount;
+ (UIButton *)newButtonWithTitle:(NSString *)title
target:(id)target
selector:(SEL)selector
frame:(CGRect)frame
image:(UIImage *)image
imagePressed:(UIImage *)imagePressed
darkTextColor:(BOOL)darkTextColor;
+ (NSString *)priceFromDouble:(double)d;
+ (NSNumberFormatter *)currencyFormatter;
+ (int)numCentPlaces;
+ (int)priceDenominator;
@end