Swift获取当前时间(年月日),按网上说的,可是为什么找不到NSCalendarDate
发布网友
发布时间:2022-04-27 04:54
我来回答
共2个回答
热心网友
时间:2023-10-03 10:13
直接
var date:NSDate = NSDate()
就是当前时间了
热心网友
时间:2023-10-03 10:13
@IBOutlet var dateLabel: UILabel!
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view, typically from a nib.
let df = DateFormatter()
df.dateFormat = "yyyy-MM-dd HH:mm:ss"
let newdate = df.string(from: Date())
dateLabel.text = newdate