swift获取当前时间

前端之家收集整理的这篇文章主要介绍了swift获取当前时间前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

//得到当前时间

let date = Date.init()

let cal = Calendar.current

let unitFlags:NSCalendar.Unit = [NSCalendar.Unit.year,NSCalendar.Unit.month]

let conponent = (cal as NSCalendar).components(unitFlags,from: date)

print("当前年份是:\(conponent)年")

原文链接:/swift/321456.html

猜你在找的Swift相关文章