mirror of
https://github.com/zhigang1992/motikyapp.git
synced 2026-04-29 04:35:06 +08:00
24 lines
454 B
Objective-C
24 lines
454 B
Objective-C
//
|
|
// MOProgressView.h
|
|
// testProgressBar
|
|
//
|
|
// Created by notedit on 5/15/13.
|
|
// Copyright (c) 2013 motiky. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface MOProgressView : UIView
|
|
|
|
@property (strong,nonatomic) UIImageView *trackView;
|
|
@property (strong,nonatomic) UIImageView *progressbgView;
|
|
@property (strong,nonatomic) UIView *progressView;
|
|
|
|
|
|
- (id)initWithFrame:(CGRect)frame;
|
|
|
|
@property (nonatomic, assign) double progress;
|
|
|
|
@end
|
|
|