PFBottomColletionView.h 776 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // PFBottomColletionView.h
  3. // SMEngineDemo
  4. //
  5. // Created by mumu on 2019/11/6.
  6. // Copyright © 2019 pfdetect. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol PFBottomColletionViewDelegate <NSObject>
  11. @optional
  12. - (void)bottomColletionDidSelectedIndex:(NSInteger)index;
  13. @end
  14. @interface FUBottomBottomCell : UICollectionViewCell
  15. @property (strong, nonatomic) UILabel *botlabel;
  16. @property (assign, nonatomic) BOOL isSel;
  17. @end
  18. @interface PFBottomColletionView : UIView
  19. @property (nonatomic, strong) NSArray *dataArray;
  20. @property (assign, nonatomic) BOOL isSel;
  21. @property (nonatomic, assign) id<PFBottomColletionViewDelegate>delegate ;
  22. @property (assign, nonatomic,readonly) NSInteger selIndex;
  23. @end
  24. NS_ASSUME_NONNULL_END