12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // ShowBindVC.m
- // jiaPei
- //
- // Created by EchoShacolee on 2018/2/8.
- // Copyright © 2018年 JCZ. All rights reserved.
- //
- #import "ShowBindVC.h"
- @interface ShowBindVC ()
- @property (weak, nonatomic) IBOutlet UIImageView *imgV;
- @property (weak, nonatomic) IBOutlet UILabel *lab;
- @end
- @implementation ShowBindVC
- - (void)viewDidLoad {
- [super viewDidLoad];
-
- self.view.backgroundColor = backGroundColor;
- [self configNavigationBar];
- NSArray *arr = @[@"bindCard",@"",@""];
- NSArray *titles = @[@"学员账号",@"QQ",@"微信"];
- self.imgV.image = [UIImage imageNamed:arr[_type]];
- _labNum = [_labNum substringWithRange:NSMakeRange(_labNum.length-4, 4)];
- self.lab.text = [NSString stringWithFormat:@"您已绑定尾号%@的%@",self.labNum,titles[_type]];
- }
- - (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
|