Welcome to mirror list, hosted at ThFree Co, Russian Federation.

ProgressView.h « Classes « Maps « iphone - github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2bafb836cb0c61fa8adddff51103405b9e562e2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20

#import <UIKit/UIKit.h>

@class ProgressView;
@protocol ProgressViewDelegate <NSObject>

- (void)progressViewDidCancel:(ProgressView *)progress;
- (void)progressViewDidStart:(ProgressView *)progress;

@end

@interface ProgressView : UIView

@property (nonatomic) BOOL failedMode;
@property (nonatomic) double progress;
- (void)setProgress:(double)progress animated:(BOOL)animated;

@property (nonatomic, weak) id <ProgressViewDelegate> delegate;

@end