You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

52 lines
1.2 KiB

//
// ShowWXViewController.m
// tongxin
//
// Created by WeiChaoZheng on 2018/10/25.
// Copyright © 2018年 xTT. All rights reserved.
//
#import "ShowWXViewController.h"
@interface ShowWXViewController ()
@end
@implementation ShowWXViewController
- (void)viewDidLoad {
[super viewDidLoad];
self.WXNameLabel.text = cUser.wx_name;
self.unBindBtn.backgroundColor = mainColor;
self.unBindBtn.layer.masksToBounds = YES;
self.unBindBtn.layer.cornerRadius = 3;
}
- (IBAction)unBindWXAction:(UIButton *)sender {
WEAKSELF
[User userUNBindWXSuccess:^(id responseObject) {
[weakSelf goBack:nil];
} failure:^(id faiObject) {
}];
}
- (void)didReceiveMemoryWarning {
[super didReceiveMemoryWarning];
// Dispose of any resources that can be recreated.
}
/*
#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