NIMLoadProgressView.h 455 B

1234567891011121314151617181920212223
  1. //
  2. // NIMLoadProgressView.h
  3. // NIM
  4. //
  5. // Created by ios on 13-11-9.
  6. // Copyright (c) 2013年 Netease. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #pragma mark - LoadProgressView
  10. @interface NIMLoadProgressView : UIView {
  11. UIImageView *_maskView;
  12. UILabel *_progressLabel;
  13. UIActivityIndicatorView *_activity;
  14. }
  15. @property (nonatomic, assign)CGFloat maxProgress;
  16. - (void)setProgress:(CGFloat)progress;
  17. @end