forked from mwaterfall/MWPhotoBrowser
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Photo download progress now shown in circular indicator.
Closes mwaterfall#115
- Loading branch information
1 parent
17e65c0
commit 47d9ac3
Showing
8 changed files
with
349 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
24 changes: 24 additions & 0 deletions
24
MWPhotoBrowser/Libraries/DACircularProgress/DACircularProgressView.h
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
// | ||
// DACircularProgressView.h | ||
// DACircularProgress | ||
// | ||
// Created by Daniel Amitay on 2/6/12. | ||
// Copyright (c) 2012 Daniel Amitay. All rights reserved. | ||
// | ||
|
||
#import <UIKit/UIKit.h> | ||
|
||
@interface DACircularProgressView : UIView | ||
|
||
@property(nonatomic, strong) UIColor *trackTintColor UI_APPEARANCE_SELECTOR; | ||
@property(nonatomic, strong) UIColor *progressTintColor UI_APPEARANCE_SELECTOR; | ||
@property(nonatomic) NSInteger roundedCorners UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :-( | ||
@property(nonatomic) CGFloat thicknessRatio UI_APPEARANCE_SELECTOR; | ||
@property(nonatomic) CGFloat progress; | ||
|
||
@property(nonatomic) CGFloat indeterminateDuration UI_APPEARANCE_SELECTOR; | ||
@property(nonatomic) NSInteger indeterminate UI_APPEARANCE_SELECTOR; // Can not use BOOL with UI_APPEARANCE_SELECTOR :-( | ||
|
||
- (void)setProgress:(CGFloat)progress animated:(BOOL)animated; | ||
|
||
@end |
Oops, something went wrong.