|
@@ -46,7 +46,8 @@
|
|
[whiteBgView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
[whiteBgView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
make.left.mas_equalTo(0);
|
|
make.left.mas_equalTo(0);
|
|
make.right.mas_equalTo(0);
|
|
make.right.mas_equalTo(0);
|
|
- make.height.mas_equalTo(418+ 10 + safeArea);
|
|
|
|
|
|
+ //make.height.mas_equalTo(418+ 10 + safeArea);
|
|
|
|
+ make.height.mas_equalTo(200+ 10 + safeArea);
|
|
make.bottom.mas_equalTo(10);
|
|
make.bottom.mas_equalTo(10);
|
|
}];
|
|
}];
|
|
|
|
|
|
@@ -80,10 +81,11 @@
|
|
[self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
[self.tableView mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
make.left.mas_equalTo(15);
|
|
make.left.mas_equalTo(15);
|
|
make.right.mas_equalTo(-15);
|
|
make.right.mas_equalTo(-15);
|
|
- make.height.mas_equalTo(70*2+50);
|
|
|
|
|
|
+ //make.height.mas_equalTo(70*2+50);
|
|
|
|
+ make.height.mas_equalTo(0.0);
|
|
make.top.equalTo(titleLabel.mas_bottom).offset(15.f);
|
|
make.top.equalTo(titleLabel.mas_bottom).offset(15.f);
|
|
}];
|
|
}];
|
|
-
|
|
|
|
|
|
+ self.tableView.hidden = YES;
|
|
|
|
|
|
UILabel *tipLabel = [[UILabel alloc] init];
|
|
UILabel *tipLabel = [[UILabel alloc] init];
|
|
tipLabel.text = NSLocalizedString(@"File_upload_path_new_name_tip",nil);
|
|
tipLabel.text = NSLocalizedString(@"File_upload_path_new_name_tip",nil);
|