-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathCL.h
44 lines (31 loc) · 1.03 KB
/
CL.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
//
// CL.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 "Estados.h"
#import "Esqueleto_DCUViewController.h"
@class SuperViewController;
@interface CL : SuperViewController <UITableViewDataSource, UITableViewDelegate> {
IBOutlet UILabel *label;
IBOutlet UIImageView *star1;
IBOutlet UIImageView *star2;
IBOutlet UIImageView *star3;
IBOutlet UIImageView *star4;
IBOutlet UIImageView *star5;
IBOutlet UIImageView *image;
IBOutlet UIActivityIndicatorView *activityindicator;
NSMutableDictionary *dictionary;
NSMutableArray *tracks;
NSMutableArray *autores;
}
@property(nonatomic,retain) NSMutableDictionary *dictionary;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil dictionary:(NSMutableDictionary *)dictionary1;
- (IBAction)facebook:(id)sender;
- (IBAction)reproductor;
@end