直接贴代码
-(void)drawUITextView{
NSString *strA = @"提交订单即视为同意";
NSString *strB = @"《用户服务协议》";
NSString *strC = @"《隐私政策》";
NSString *strD = @"及同意商家将相应订单信息同步 网络,您可我的“我的订单”板块查询相应订单信息";
NSString *info_str =[NSString stringWithFormat:@"%@%@%@%@",strA,strB,strC,strD];
self.infoTV = [[UITextView alloc] init];
[self.footView addSubview:self.infoTV];
[self.infoTV mas_makeConstraints:^(MASConstraintMaker *make) {
make.top.mas_equalTo(self.footView.mas_top).mas_offset(20);
make.left.mas_equalTo(self.footView.mas_left).mas_offset(30);
make.right.mas_equalTo(self.footView.mas_right).mas_offset(-30);
make.height.mas_equalTo(50);
}];
[self.infoTV layoutIfNeeded];
self.infoTV.font = [UIFont systemFontOfSize:adp(8)];
self.infoTV.text = info_str;