JXBaseInfoVc.m 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //
  2. // JXBaseInfoVc.m
  3. // shiku_im
  4. //
  5. // Created by 123 on 2020/5/26.
  6. // Copyright © 2020 Reese. All rights reserved.
  7. //
  8. #import "JXBaseInfoVc.h"
  9. @interface JXBaseInfoVc ()
  10. @property (weak, nonatomic) IBOutlet UIButton *headIMG;
  11. @property (weak, nonatomic) IBOutlet UITextField *userID;
  12. @property (weak, nonatomic) IBOutlet UITextField *nickName;
  13. @property (weak, nonatomic) IBOutlet UITextField *aerdBtnTF;
  14. @property (weak, nonatomic) IBOutlet UIButton *xianshengBtn;
  15. @property (weak, nonatomic) IBOutlet UIButton *nvshiBtn;
  16. @property (weak, nonatomic) IBOutlet UIButton *xinxiBtn;
  17. @end
  18. @implementation JXBaseInfoVc
  19. - (IBAction)goback:(id)sender {
  20. [g_navigation dismissViewController:self animated:YES];
  21. }
  22. - (void)viewDidLoad {
  23. [super viewDidLoad];
  24. self.headIMG.layer.cornerRadius=65;
  25. self.headIMG.layer.masksToBounds=YES;
  26. self.xinxiBtn.layer.cornerRadius=22;
  27. self.xinxiBtn.layer.masksToBounds=YES;
  28. }
  29. /*
  30. #pragma mark - Navigation
  31. // In a storyboard-based application, you will often want to do a little preparation before navigation
  32. - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
  33. // Get the new view controller using [segue destinationViewController].
  34. // Pass the selected object to the new view controller.
  35. }
  36. */
  37. @end