18 lines
301 B
Objective-C
18 lines
301 B
Objective-C
//
|
|
// PIUserSexView.h
|
|
// YuMi
|
|
//
|
|
// Created by duoban on 2023/8/14.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface PIUserSexView : UIView
|
|
@property (nonatomic,assign) NSInteger gender; /// 性别 1:男 2:女
|
|
@property (nonatomic,assign) BOOL selected;
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|