Используйте приведенный ниже код для управления зачеркиванием с различным размером шрифта текста.Вы можете изменить диапазон согласно вашему требованию
let str1 = "16230"
let str2 = "63455333"
let dateText = NSMutableAttributedString.init(string: "\(str1)\(str2)")
dateText.setAttributes([NSAttributedString.Key.font: UIFont.systemFont(ofSize: 34, weight: UIFont.Weight.bold),
NSAttributedString.Key.foregroundColor: UIColor.black, NSAttributedString.Key.strikethroughStyle: 2],
range: NSMakeRange(0, str1.count))
dateText.setAttributes([NSAttributedString.Key.font: UIFont.systemFont(ofSize: 34, weight: UIFont.Weight.thin),
NSAttributedString.Key.foregroundColor: UIColor.black, NSAttributedString.Key.strikethroughStyle: 1],
range: NSMakeRange(str1.count,str2.count))
// set the attributed string to the UILabel object
deadline_lbl.attributedText = dateText