NIMLoadMoreView.h 356 B

1234567891011121314151617181920
  1. //
  2. // NIMLoadMoreView.h
  3. // NIMKit
  4. //
  5. // Created by emily on 04/02/2018.
  6. // Copyright © 2018 NetEase. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NIMLoadMoreView : UICollectionReusableView
  10. @property (nonatomic, retain) UIActivityIndicatorView *activityView;
  11. - (void)startAnimation;
  12. - (void)stopAnimation;
  13. - (BOOL)isAnimating;
  14. @end