Statistics
| Branch: | Tag: | Revision:

root / Classes / DDProgressView.h @ 64929bae

History | View | Annotate | Download (558 Bytes)

1
//
2
//  DDProgressView.h
3
//  DDProgressView
4
//
5
//  Created by Damien DeVille on 3/13/11.
6
//  Copyright 2011 Snappy Code. All rights reserved.
7
//
8

    
9
#import <UIKit/UIKit.h>
10

    
11
@interface DDProgressView : UIView
12
{
13
@private
14
        float progress ;
15
        UIColor *innerColor ;
16
        UIColor *outerColor ;
17
    float targetProgress;
18
    NSTimer *progressTimer;
19
}
20

    
21
@property (nonatomic,retain) UIColor *innerColor ;
22
@property (nonatomic,retain) UIColor *outerColor ;
23
@property (nonatomic,assign) float progress ;
24

    
25
- (void)setProgress:(CGFloat)newProgress animated:(BOOL)animated;
26

    
27
@end