SexViewController.h 447 B

123456789101112131415161718192021222324
  1. //
  2. // SexViewController.h
  3. // BuguLive
  4. //
  5. // Created by fanwe2014 on 16/7/19.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @protocol changeSexDelegate <NSObject>
  10. //修改性别的代理
  11. - (void)changeSexWithString:(NSString *)sexString;
  12. @end
  13. @interface SexViewController : BGBaseViewController
  14. @property (nonatomic, copy) NSString *sexType;
  15. @property (nonatomic, weak) id<changeSexDelegate>delgate;
  16. @end