JXWebviewProgress.h 405 B

12345678910111213141516171819202122232425
  1. //
  2. // JXWebviewProgress.h
  3. // shiku_im
  4. //
  5. // Created by 1 on 2019/4/8.
  6. // Copyright © 2019年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface JXWebviewProgress : UIView
  11. //进度条颜色
  12. @property (nonatomic,strong) UIColor *lineColor;
  13. //开始加载
  14. -(void)startLoadingAnimation;
  15. //结束加载
  16. -(void)endLoadingAnimation;
  17. @end
  18. NS_ASSUME_NONNULL_END