我正在尝试显示营业时间。例如,在文本文件中,它保存为:周一周二上午9点至下午4点周三仅限预约
在Swift中,对于我的textView,如何对其进行格式化以使其显示新行?
周一至周二上午9点至下午4点(新线) Wed-Thur只能预约
谢谢!
override func viewDidLoad() {
super.viewDidLoad()
if MasterViewController.MyVariables.companyImage != nil {
imageView1.image = MasterViewController.MyVariables.companyImage!
hoursText2.text = MasterViewController.MyVariables.hours
}
// Do any additional setup after loading the view, typically from a nib.
configureView()
}