UNICORN - iOS
MStatusbarProgress.h
1 //
2 // MStatusbarProgress.h
3 //
4 // Created by saimushi on 2015/01/14.
5 // Version:1.0
16 #import <UIKit/UIKit.h>
17 
18 // プログレスカラー
19 //#define MSTATUSBAR_PROGRESS_COLOR [UIColor blueColor]
20 #define MSTATUSBAR_PROGRESS_COLOR [UIColor colorWithRed:0.67 green:0.84 blue:0.20 alpha:0.5f]
21 
22 // プログレスの高さ
23 #define MSTATUSBAR_PROGRESS_HEIGHT 22.0f
24 
25 @interface MStatusbarProgress : UIView
26 
27 + (void)show:(double)argTotalBytesSent :(double)argTotalBytes;
28 
29 @end
Definition: MStatusbarProgress.h:25