CommonSexView.h 385 B

12345678910111213141516171819202122232425
  1. //
  2. // CommonSexView.h
  3. // UniversalApp
  4. //
  5. // Created by bogokj on 2019/11/6.
  6. // Copyright © 2019 voidcat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. typedef NS_ENUM(NSInteger, BogoSex) {
  11. BogoUnknown,
  12. BogoMale,
  13. BogoFemale
  14. };
  15. @interface CommonSexView : UIView
  16. - (void)setSex:(BogoSex)sex age:(NSInteger)age;
  17. @end
  18. NS_ASSUME_NONNULL_END