-
Notifications
You must be signed in to change notification settings - Fork 1
/
SobreDetalleController.h
85 lines (64 loc) · 2.57 KB
/
SobreDetalleController.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
//
// SobreDetalleController.h
// EFM
//
// Created by Noemi on 11/21/10.
// Copyright 2010 Pynsoft All rights reserved.
//
#import <UIKit/UIKit.h>
#import "EFMAppDelegate.h"
@interface SobreDetalleController : UIViewController <UIActionSheetDelegate>{
IBOutlet UILabel *lblTitulo;
IBOutlet UILabel *lblPresupuesto;
IBOutlet UILabel *lblGastado;
IBOutlet UILabel *lblPorcentaje;
IBOutlet UILabel *lblUltimoGasto;
IBOutlet UILabel *lblFechaReset;
IBOutlet UILabel *lblMonedaPresupuesto;
IBOutlet UILabel *lblMonedaGastado;
IBOutlet UILabel *lblMonedaUltimoGasto;
IBOutlet UILabel *presupuestoDato;
IBOutlet UILabel *gastadoDato;
IBOutlet UILabel *porcentajeDato;
IBOutlet UILabel *ultimoGastoDato;
IBOutlet UILabel *fechaResetDato;
//PAQUITO
IBOutlet UITextField *txtDinero;
IBOutlet UIButton *botonSacar;
IBOutlet UIButton *botonReset;
IBOutlet UIButton *botonInformacion;
IBOutlet UIView *vistaInformacion;
IBOutlet UIImageView *fondoInformacion;
IBOutlet UITextView *textoInformacion;
int pageNumber;
float dineroAnadirAhorro;
}
@property (nonatomic,retain)IBOutlet UILabel *lblTitulo;
@property (nonatomic,retain)IBOutlet UILabel *lblPresupuesto;
@property (nonatomic,retain)IBOutlet UILabel *lblGastado;
@property (nonatomic,retain)IBOutlet UILabel *lblPorcentaje;
@property (nonatomic,retain)IBOutlet UILabel *lblUltimoGasto;
@property (nonatomic,retain)IBOutlet UILabel *lblFechaReset;
@property (nonatomic,retain)IBOutlet UILabel *lblMonedaPresupuesto;
@property (nonatomic,retain)IBOutlet UILabel *lblMonedaGastado;
@property (nonatomic,retain)IBOutlet UILabel *lblMonedaUltimoGasto;
@property (nonatomic,retain)IBOutlet UILabel *presupuestoDato;
@property (nonatomic,retain)IBOutlet UILabel *gastadoDato;
@property (nonatomic,retain)IBOutlet UILabel *porcentajeDato;
@property (nonatomic,retain)IBOutlet UILabel *ultimoGastoDato;
@property (nonatomic,retain)IBOutlet UILabel *fechaResetDato;
@property (nonatomic,retain)IBOutlet UITextField *txtDinero;
@property (nonatomic,retain)IBOutlet UIButton *botonSacar;
@property (nonatomic,retain)IBOutlet UIButton *botonReset;
@property (nonatomic,retain)IBOutlet UIImageView *fondoInformacion;
@property (nonatomic,retain)IBOutlet UITextView *textoInformacion;
@property (nonatomic)int pageNumber;
@property (nonatomic)float dineroAnadirAhorro;
- (id)initWithPageNumber:(int)page;
-(IBAction)sacarDineroSobre:(id)sender;
-(IBAction)resetDineroSobre:(id)sender;
-(void)cargarDetalleVista;
-(IBAction)ocultarTeclado:(id)sender;
-(IBAction)mostrarInformacion:(id)sender;
-(IBAction)eventoEmpezarEditar:(id)sender;
@end