YOUPAIMineLabelEditVC.h 949 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // YOUPAIMineLabelEditVC.h
  3. // MSYOUPAI
  4. //
  5. // Created by admin on 2022/3/2.
  6. // Copyright © 2022 MS. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface YOUPAIMineLabelEditVC : ZCBaseVC<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
  11. @property (strong,nonatomic) UICollectionViewFlowLayout *youpaipflowLayout;
  12. @property (strong,nonatomic) UICollectionViewFlowLayout *youpaipSelectflowLayout;
  13. @property (strong,nonatomic) UICollectionView *youpaipSelectcollectionView;
  14. @property (strong,nonatomic) UICollectionView *youpaipcollectionView;
  15. @property(strong, nonatomic) UIBarButtonItem *rightItem;
  16. @property (nonatomic, copy) void (^didFinishSaveBlock)(NSArray * value);
  17. @end
  18. @interface YOUPAIMineLabelEditCell : UICollectionViewCell
  19. @property(strong, nonatomic) UGLabel * youpaipLabel;
  20. @property(strong, nonatomic) UIButton * youpaipXBtn;
  21. @end
  22. NS_ASSUME_NONNULL_END