let infoLabel = UILabel ()
infoLabel.numberOfLines=0//必须有
infoLabel.textColor = UIColor.gray
infoLabel.font = UIFont .systemFont(ofSize: 16)
infoLabel.text = "客服热线:400-888-8888\n客服QQ:123456789 987654321\n客服微信:123456789 987654321" //必须有\n
self.addSubview(infoLabel)