123456789101112131415161718192021222324252627282930 |
- //
- // YOUPAIMineLabelEditVC.h
- // MSYOUPAI
- //
- // Created by admin on 2022/3/2.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAIMineLabelEditVC : ZCBaseVC<UICollectionViewDelegate,UICollectionViewDataSource,UICollectionViewDelegateFlowLayout>
- @property (strong,nonatomic) UICollectionViewFlowLayout *youpaipflowLayout;
- @property (strong,nonatomic) UICollectionViewFlowLayout *youpaipSelectflowLayout;
- @property (strong,nonatomic) UICollectionView *youpaipSelectcollectionView;
- @property (strong,nonatomic) UICollectionView *youpaipcollectionView;
- @property(strong, nonatomic) UIBarButtonItem *rightItem;
- @property (nonatomic, copy) void (^didFinishSaveBlock)(NSArray * value);
- @end
- @interface YOUPAIMineLabelEditCell : UICollectionViewCell
- @property(strong, nonatomic) UGLabel * youpaipLabel;
- @property(strong, nonatomic) UIButton * youpaipXBtn;
- @end
- NS_ASSUME_NONNULL_END
|