PFBeautyView.h 782 B

12345678910111213141516171819202122232425262728293031323334
  1. //
  2. // PFBeautyView.h
  3. // PFAPIDemoBar
  4. //
  5. // Created by mumu on 2019/11/6.
  6. // Copyright © 2019 pfdetect. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "PFDemoBarDefine.h"
  10. #import "PFBeautyParam.h"
  11. @class PFBeautyView;
  12. @protocol PFBeautyViewDelegate <NSObject>
  13. - (void)beautyCollectionView:(PFBeautyView *)beautyView didSelectedParam:(PFBeautyParam *)param;
  14. @end
  15. @interface PFBeautyView : UICollectionView
  16. @property (nonatomic, assign) id<PFBeautyViewDelegate>mDelegate ;
  17. @property (nonatomic, assign) NSInteger selectedIndex ;
  18. @property (nonatomic, strong) NSArray <PFBeautyParam *>*dataArray;
  19. @end
  20. @interface FUBeautyCell : UICollectionViewCell
  21. @property (nonatomic, strong) UIImageView *imageView ;
  22. @property (nonatomic, strong) UILabel *titleLabel ;
  23. @end