// // PFBeautyView.h // PFAPIDemoBar // // Created by mumu on 2019/11/6. // Copyright © 2019 pfdetect. All rights reserved. // #import #import "PFDemoBarDefine.h" #import "PFBeautyParam.h" @class PFBeautyView; @protocol PFBeautyViewDelegate - (void)beautyCollectionView:(PFBeautyView *)beautyView didSelectedParam:(PFBeautyParam *)param; @end @interface PFBeautyView : UICollectionView @property (nonatomic, assign) idmDelegate ; @property (nonatomic, assign) NSInteger selectedIndex ; @property (nonatomic, strong) NSArray *dataArray; @end @interface FUBeautyCell : UICollectionViewCell @property (nonatomic, strong) UIImageView *imageView ; @property (nonatomic, strong) UILabel *titleLabel ; @end