MJPhotoLoadingView.h 337 B

1234567891011121314151617181920
  1. //
  2. // MJPhotoLoadingView.h
  3. //
  4. // Created by mj on 13-3-4.
  5. // Copyright (c) 2013年 itcast. All rights reserved.
  6. //
  7. #import <UIKit/UIKit.h>
  8. #define kMinProgress 0.0001
  9. @class MJPhotoBrowser;
  10. @class MJPhoto;
  11. @interface MJPhotoLoadingView : UIView
  12. @property (nonatomic) float progress;
  13. - (void)showLoading;
  14. - (void)showFailure;
  15. @end