и левый в 1й лейбе - все равно жмет к левой границе - кто-то стыкался с такой проблемой?
А как вы делаете 2 алайнмента?
let rows = value.components(separatedBy: "\n") let style = NSMutableParagraphStyle() style.alignment = .left let style2 = NSMutableParagraphStyle() style2.alignment = .justified let attributedString = NSMutableAttributedString(string: "str1", attributes: [.paragraphStyle: style, .foregroundColor: UIColor.black, .font: UIFont.systemFont(ofSize: 14, weight: .semibold)]) let rightAttributed = NSAttributedString(string: "str2" , attributes: [.paragraphStyle: style2, .foregroundColor: UIColor.black, .font: UIFont.systemFont(ofSize: 24)]) attributedString.append(NSAttributedString(string: rows[1] , attributes: [.paragraphStyle: style2, .foregroundColor: UIColor.black, .font: UIFont.systemFont(ofSize: 24)])) volumeLabel.attributedText = attributedString
Обсуждают сегодня