| 1234567891011121314151617181920212223242526272829303132333435363738394041 |
- //
- // LDProgressView.h
- // LDProgressView
- //
- // Created by Christian Di Lorenzo on 9/27/13.
- // Copyright (c) 2013 Light Design. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef enum {
- LDProgressStripes,
- LDProgressGradient,
- LDProgressSolid
- } LDProgressType;
- @interface LDProgressView : UIView
- @property (nonatomic) CGFloat progress;
- @property (nonatomic) CGFloat labelProgress;
- @property (nonatomic, strong) UIColor *color UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) UIColor *background UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *flat UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *animate UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *showStroke UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *showText UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *showBackground UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *showBackgroundInnerShadow UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *outerStrokeWidth UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *progressInset UI_APPEARANCE_SELECTOR;
- @property (nonatomic, strong) NSNumber *borderRadius UI_APPEARANCE_SELECTOR;
- @property (nonatomic) LDProgressType type;
- - (void)overrideProgressText:(NSString *)progressText;
- @end
|