1234567891011121314151617181920 |
- //
- // YOUPAIProfileContentCell.h
- // MSYOUPAI
- //
- // Created by xiaohaoran on 2022/3/1.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- typedef void (^VqupaipDidSelectBlock)(NSString *title);
- @interface YOUPAIProfileContentCell : UITableViewCell
- @property(nonatomic,strong)NSArray *vqupaipdataArr;
- @property(nonatomic,copy)VqupaipDidSelectBlock vqupaipDidSelectBlock;
- @end
- NS_ASSUME_NONNULL_END
|