-
Notifications
You must be signed in to change notification settings - Fork 0
/
KidDetail.h
35 lines (30 loc) · 858 Bytes
/
KidDetail.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
//
// KidDetail.h
// Allowance
//
// Created by Pablo Collins on 6/15/10.
//
#import <UIKit/UIKit.h>
#import "Kid.h"
#import "ModalEditorDelegate.h"
#import "Reloadable.h"
#import "EditableCurrencyCell.h"
#import "AmountEditor.h"
#import "AllowanceDayEditor.h"
#import "WeekDays.h"
#import "CreditDebitScreen.h"
#import "AccountHistory.h"
@interface KidDetail : UITableViewController<Reloadable,UIAlertViewDelegate> {
NSMutableArray *cellIndex;
id<Reloadable> __unsafe_unretained kidsTable;
}
@property (nonatomic, unsafe_unretained) id<Reloadable> kidsTable;
- (void)deleteBtnClicked:(id)sender;
- (void)readAndReload;
- (UITableViewCell *)kidNameCell;
- (UITableViewCell *)kidAllowanceCell;
- (UITableViewCell *)kidBalanceCell;
- (UITableViewCell *)kidDeleteCell;
- (UITableViewCell *)kidCreditCell;
- (UITableViewCell *)kidDebitCell;
@end