|
@@ -159,7 +159,7 @@
|
|
|
rightLabel.textColor = [UIColor hwColor:@"#959799" alpha:1.0];
|
|
|
rightLabel.textAlignment = NSTextAlignmentRight;
|
|
|
[fileUploadBgView addSubview:rightLabel];
|
|
|
-
|
|
|
+
|
|
|
[rightLabel mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
make.right.mas_equalTo(arrowImageView.mas_left).offset(-2);
|
|
|
make.top.mas_equalTo(10);
|
|
@@ -172,7 +172,7 @@
|
|
|
recordBut.tag = 1;
|
|
|
[recordBut addTarget:self action:@selector(didClickButFun:) forControlEvents:UIControlEventTouchUpInside];
|
|
|
[fileUploadBgView addSubview:recordBut];
|
|
|
-
|
|
|
+
|
|
|
[recordBut mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
make.right.mas_equalTo(0);
|
|
|
make.top.mas_equalTo(0);
|
|
@@ -180,6 +180,10 @@
|
|
|
make.height.mas_equalTo(40);
|
|
|
}];
|
|
|
|
|
|
+ arrowImageView.hidden = YES;
|
|
|
+ rightLabel.hidden = YES;
|
|
|
+ recordBut.hidden = YES;
|
|
|
+
|
|
|
//图片上传
|
|
|
NSString* curImgUploadStr = [[NSString alloc] initWithFormat:@"%@ %@",@" ",NSLocalizedString(@"my_set_no_image_upload",nil)];
|
|
|
UIButton *imageUploadBut = [[UIButton alloc] init];
|
|
@@ -289,6 +293,10 @@
|
|
|
make.height.mas_equalTo(40);
|
|
|
}];
|
|
|
|
|
|
+ arrowImageView2.hidden = YES;
|
|
|
+ BackupsRightLabel.hidden = YES;
|
|
|
+ BackupsSetBut.hidden = YES;
|
|
|
+
|
|
|
UIButton *BackupsEyeBut = [[UIButton alloc] init];
|
|
|
//BackupsEyeBut.backgroundColor = [UIColor greenColor];
|
|
|
[BackupsEyeBut setImage:[UIImage imageNamed:@"common_eye_open"] forState:UIControlStateNormal];
|