1234567891011121314151617181920212223 |
- //
- // YOUPAISexView.h
- // MSYOUPAI
- //
- // Created by CY on 2022/2/28.
- // Copyright © 2022 MS. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface YOUPAISexView : UIView
- /// 更新数据
- /// @param sex 性别
- /// @param age 年龄
- - (void)youpaifreloadWithSex:(NSInteger)sex age:(NSInteger)age;
- @end
- NS_ASSUME_NONNULL_END
|