// // ReplacePhoneNumberViewController.m // ChinaTheoryNetwork // // Created by 张毅成 on 2019/1/28. // Copyright © 2019 张毅成. All rights reserved. // #import "ReplacePhoneNumberViewController.h" #import "BindMobileViewController.h" @interface ReplacePhoneNumberViewController () @property (weak, nonatomic) IBOutlet UIButton *buttonReplace; @property (weak, nonatomic) IBOutlet UILabel *labelTitle; @end @implementation ReplacePhoneNumberViewController - (void)viewDidLoad { [super viewDidLoad]; self.title = @"绑定手机号"; [self.buttonReplace setCorner]; self.labelTitle.text = [NSString stringWithFormat:@"绑定的手机号:%@",self.modelMy.mobile]; } - (IBAction)didTouchButtonReplace:(UIButton *)sender { BindMobileViewController *controller = [BindMobileViewController new]; controller.controllerType = controllerTypeCheck; [self.navigationController pushViewController:controller animated:true]; } @end