1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // PFBottomColletionView.h
- // SMEngineDemo
- //
- // Created by mumu on 2019/11/6.
- // Copyright © 2019 pfdetect. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @protocol PFBottomColletionViewDelegate <NSObject>
- @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) id<PFBottomColletionViewDelegate>delegate ;
- @property (assign, nonatomic,readonly) NSInteger selIndex;
- @end
- NS_ASSUME_NONNULL_END
|