-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCO.h
45 lines (34 loc) · 923 Bytes
/
CO.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
//
// CO.h
// Esqueleto DCU
//
// Created by julio.guzman on 18/11/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SuperViewController.h"
#import "Reachability.h"
#import "Player.h"
#import "Esqueleto_DCUViewController.h"
@class SuperViewController;
@interface CO : SuperViewController <UIAlertViewDelegate, UIActionSheetDelegate>{
NSString *wifi;
NSString *datos;
UIImage *checked;
UIImage *unchecked;
UIAlertView *confirm;
IBOutlet UISwitch *swifi;
IBOutlet UISwitch *sdatos;
IBOutlet UIButton *enviarDatos;
IBOutlet UIButton *borrarDatos;
}
- (IBAction) wifi;
- (IBAction) datos;
- (IBAction) enviar;
- (IBAction) obtieneplist;
- (IBAction) borrarTodo;
- (IBAction)reproductor;
- (void) writeToPlist;
@property(nonatomic,retain) IBOutlet UISwitch *swifi;
@property(nonatomic,retain) IBOutlet UISwitch *sdatos;
@end