-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSP.h
51 lines (37 loc) · 1009 Bytes
/
SP.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
//
// SP.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 "Player.h"
#import "Esqueleto_DCUViewController.h"
#import "CL.h"
@interface SP : SuperViewController {
#pragma mark - Table View Atributes
NSMutableArray *standardinputtableviewarray;
BOOL scrollable;
int numberfbuttonsinrow;
int numberofbuttonsperrow;
int buttonwidth;
int buttonheight;
int initialx ;
int initialy;
int x;
int y;
int xspacebetweenbuttons;
int yspacebetweenbuttons;
int labelx;
int labely;
int labelheight;
int labelwidth;
IBOutlet UITableView *tableViewOutlet;
IBOutlet UIActivityIndicatorView *activityIndicator;
}
-(CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath;
-(void)buttonAction:(UIButton *)button;
-(IBAction)reproductor;
@end