| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- //
- // JXBaseInfoVc.m
- // shiku_im
- //
- // Created by 123 on 2020/5/26.
- // Copyright © 2020 Reese. All rights reserved.
- //
- #import "JXBaseInfoVc.h"
- @interface JXBaseInfoVc ()
- @property (weak, nonatomic) IBOutlet UIButton *headIMG;
- @property (weak, nonatomic) IBOutlet UITextField *userID;
- @property (weak, nonatomic) IBOutlet UITextField *nickName;
- @property (weak, nonatomic) IBOutlet UITextField *aerdBtnTF;
- @property (weak, nonatomic) IBOutlet UIButton *xianshengBtn;
- @property (weak, nonatomic) IBOutlet UIButton *nvshiBtn;
- @property (weak, nonatomic) IBOutlet UIButton *xinxiBtn;
- @end
- @implementation JXBaseInfoVc
- - (IBAction)goback:(id)sender {
-
- [g_navigation dismissViewController:self animated:YES];
- }
- - (void)viewDidLoad {
- [super viewDidLoad];
- self.headIMG.layer.cornerRadius=65;
- self.headIMG.layer.masksToBounds=YES;
- self.xinxiBtn.layer.cornerRadius=22;
- self.xinxiBtn.layer.masksToBounds=YES;
- }
- /*
- #pragma mark - Navigation
- // In a storyboard-based application, you will often want to do a little preparation before navigation
- - (void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
- // Get the new view controller using [segue destinationViewController].
- // Pass the selected object to the new view controller.
- }
- */
- @end
|