JLChen
2021-05-18 a869383e163a18cdedcf587383c1eca043129754
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
//  JointMethodSelectViewController.m
//  LeChangeDemo
//
//  Created by imou on 2019/12/5.
//  Copyright © 2019 dahua. All rights reserved.
//  选择对接方式页面 对接方式有海外imou以及国内乐橙
 
#import "JointMethodSelectViewController.h"
 
@interface JointMethodSelectViewController ()
 
/// 对接海外Btn
@property (strong, nonatomic) UIButton *overseaJointBtn;
 
/// 对接国内Btn
@property (strong, nonatomic) UIButton *internalJointBtn;
 
@end
 
@implementation JointMethodSelectViewController
 
- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view.
}
 
 
-(void)configSubview{
    self.overseaJointBtn = [UIButton buttonWithType:UIButtonTypeCustom];
    [self.view addSubview:self.overseaJointBtn];
    [self.overseaJointBtn mas_makeConstraints:^(MASConstraintMaker *make) {
        make.height.equalTo(@100);
        make.width.equalTo(make.height);
    }];
    self.overseaJointBtn.backgroundColor = [UIColor redColor];
}
//MARK: - Action Methods
 
 
 
@end