FUBottomColletionView.h 777 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //
  2. // FUBottomColletionView.h
  3. // FULiveDemo
  4. //
  5. // Created by 孙慕 on 2019/11/6.
  6. // Copyright © 2019 FaceUnity. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @protocol FUBottomColletionViewDelegate <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 FUBottomColletionView : UIView
  19. @property (nonatomic, strong) NSArray *dataArray;
  20. @property (assign, nonatomic) BOOL isSel;
  21. @property (nonatomic, assign) id<FUBottomColletionViewDelegate>delegate ;
  22. @property (assign, nonatomic,readonly) NSInteger selIndex;
  23. @end
  24. NS_ASSUME_NONNULL_END