forked from UNAMMobile/Descarga-Cultura-UNAM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathTI.h
44 lines (29 loc) · 1 KB
/
TI.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
//
// TI.h
// Esqueleto DCU
//
// Created by julio.guzman on 18/11/11.
// Copyright 2011 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "SuperViewController.h"
@class SuperViewController;
@interface TI : SuperViewController /*<UITableViewDelegate, UITableViewDataSource>*/{
IBOutlet UILabel *label;
IBOutlet UIImageView *star1;
IBOutlet UIImageView *star2;
IBOutlet UIImageView *star3;
IBOutlet UIImageView *star4;
IBOutlet UIImageView *star5;
IBOutlet UIImageView *image;
IBOutlet UITextView *textview;
IBOutlet UITextView *textviewdescripcion;
IBOutlet UIActivityIndicatorView *activityindicator;
IBOutlet UIButton *button;
NSString *ID;
NSMutableDictionary *dictionary;
}
@property(nonatomic, retain) NSString *ID;
@property(nonatomic, retain) NSMutableDictionary *dictionary;
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil idNumber:(NSString *)idNumber;
@end