20 lines
302 B
C
20 lines
302 B
C
|
|
//
|
||
|
|
// GenderPickerView.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by 谢培艺 on 2022/8/17.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "MTGridSelectView.h"
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_BEGIN
|
||
|
|
|
||
|
|
@interface GenderPickerView : MTGridSelectView
|
||
|
|
|
||
|
|
+ (GenderPickerView *)pickerViewWithMultiple:(BOOL)multiple;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|
||
|
|
NS_ASSUME_NONNULL_END
|