Subversion Repository Public Repository

Nextrek

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
//
//  ActivityViewVC.h
//  PocketVision
//
//  Created by Fabrizio on 17/04/13.
//  Copyright (c) 2013 Odyssey. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface ActivityViewVC : UIViewController {
    
    NSString* textLocal;
	
	IBOutlet UIActivityIndicatorView *activityIndicatorView;
    
    IBOutlet UILabel* textLabel;
    
	//IBOutlet UIImageView* animatedImage;
    UIView* superView;
    BOOL loaded;
}

///The text to display.
@property (nonatomic, strong) NSString* textLocal;
///The title to display.
@property (nonatomic, strong) NSString* titleLocal;

///The standard UIActivityIndicatorView.
@property (nonatomic, strong) IBOutlet UIActivityIndicatorView *activityIndicatorView;
@property (strong, nonatomic) IBOutlet UIView *activityIndicatorBox;


/**Shows the ActivityViewFramed with the specified text.
 @param aView The view where will be attached the ActivityViewFramed.
 @param aText The textToDisplay.
 */
+ (void) showActivityWithSuperView:(UIView*)aView text:(NSString*)aText;
/**Shows the ActivityViewFramed.
 @param aView The view where will be attached the ActivityViewFramed.
 */
+ (void) showActivityWithSuperView:(UIView*)aView;
/**Hides the ActivityViewFramed.
 */
+ (void) hideActivityView;


/**Sets up the ActivityViewFramed with the specified text.
 @param aText The textToDisplay.
 */
- (void) setupWithText:(NSString*)aText;

@end

Commits for Nextrek/iOS/PocketVision/PocketVision/Shared/Utils/ActivityViewVC.h

Diff revisions: vs.
Revision Author Commited Message
62 FAquili picture FAquili Sat 18 Jan, 2014 16:39:26 +0000

PocketVision 1.0