|
|
@@ -131,6 +131,23 @@
|
|
|
// }];
|
|
|
// }
|
|
|
|
|
|
+ NSString *bottomTip1Str = NSLocalizedString(@"disk_insertion_pop_tip3",nil);
|
|
|
+ UILabel *bottomTip1Lab = [[UILabel alloc] init];
|
|
|
+ bottomTip1Lab.text = bottomTip1Str;
|
|
|
+ bottomTip1Lab.textAlignment = NSTextAlignmentCenter;
|
|
|
+ bottomTip1Lab.numberOfLines = 0;
|
|
|
+ bottomTip1Lab.textColor = [UIColor hwColor:@"#151515" alpha:0.5];
|
|
|
+ //bottomTip1Lab.font = [UIFont boldSystemFontOfSize:12.0];
|
|
|
+ bottomTip1Lab.adjustsFontSizeToFitWidth = YES;
|
|
|
+ [_whiteBgView addSubview:bottomTip1Lab];
|
|
|
+
|
|
|
+ [bottomTip1Lab mas_makeConstraints:^(MASConstraintMaker *make) {
|
|
|
+ make.height.mas_equalTo(15);
|
|
|
+ make.right.mas_equalTo(-15.f);
|
|
|
+ make.left.mas_equalTo(15.f);
|
|
|
+ make.top.mas_equalTo(animation.mas_bottom).offset(0.0);
|
|
|
+ }];
|
|
|
+
|
|
|
NSString *bottomTipStr = NSLocalizedString(@"disk_insertion_pop_tip2",nil);
|
|
|
UILabel *bottomTipLab = [[UILabel alloc] init];
|
|
|
bottomTipLab.text = bottomTipStr;
|
|
|
@@ -144,7 +161,7 @@
|
|
|
make.height.mas_equalTo(50);
|
|
|
make.right.mas_equalTo(-15.f);
|
|
|
make.left.mas_equalTo(15.f);
|
|
|
- make.top.mas_equalTo(animation.mas_bottom).offset(20.0);
|
|
|
+ make.top.mas_equalTo(bottomTip1Lab.mas_bottom).offset(10.0);
|
|
|
}];
|
|
|
|
|
|
UIButton *konwBut = [[UIButton alloc] init];
|