FUBeautyView.h 776 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // FUBeautyView.h
  3. // FUAPIDemoBar
  4. //
  5. // Created by L on 2018/6/27.
  6. // Copyright © 2018年 L. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FUDemoBarDefine.h"
  10. #import "FUBeautyParam.h"
  11. @class FUBeautyView;
  12. @protocol FUBeautyViewDelegate <NSObject>
  13. - (void)beautyCollectionView:(FUBeautyView *)beautyView didSelectedParam:(FUBeautyParam *)param;
  14. @end
  15. @interface FUBeautyView : UICollectionView
  16. @property (nonatomic, assign) id<FUBeautyViewDelegate>mDelegate ;
  17. @property (nonatomic, assign) NSInteger selectedIndex ;
  18. @property (nonatomic, strong) NSArray <FUBeautyParam *>*dataArray;
  19. @end
  20. @interface FUBeautyCell : UICollectionViewCell
  21. @property (nonatomic, strong) UIImageView *imageView ;
  22. @property (nonatomic, strong) UILabel *titleLabel ;
  23. @end