// // PFBottomColletionView.h // SMEngineDemo // // Created by mumu on 2019/11/6. // Copyright © 2019 pfdetect. All rights reserved. // #import NS_ASSUME_NONNULL_BEGIN @protocol PFBottomColletionViewDelegate @optional - (void)bottomColletionDidSelectedIndex:(NSInteger)index; @end @interface FUBottomBottomCell : UICollectionViewCell @property (strong, nonatomic) UILabel *botlabel; @property (assign, nonatomic) BOOL isSel; @end @interface PFBottomColletionView : UIView @property (nonatomic, strong) NSArray *dataArray; @property (assign, nonatomic) BOOL isSel; @property (nonatomic, assign) iddelegate ; @property (assign, nonatomic,readonly) NSInteger selIndex; @end NS_ASSUME_NONNULL_END