swift [格式时间Swift]找到一种方法来获取当天的时间#tags:swift,date,time

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了swift [格式时间Swift]找到一种方法来获取当天的时间#tags:swift,date,time相关的知识,希望对你有一定的参考价值。

// http://stackoverflow.com/questions/32649039/formatting-time-of-the-day-swift-morning-afternoon-evening-any-time
// Same Principle as BigNerdRanch Silver Challenge
let hour = Calendar.currentCalendar().component(.Hour, fromDate: Date())

switch hour {
case 6..<12 : print(NSLocalizedString("Morning", comment: "Morning"))
case 12 : print(NSLocalizedString("Noon", comment: "Noon"))
case 13..<17 : print(NSLocalizedString("Afternoon", comment: "Afternoon"))
case 17..<22 : print(NSLocalizedString("Evening", comment: "Evening"))
default: print(NSLocalizedString("Night", comment: "Night"))
}

以上是关于swift [格式时间Swift]找到一种方法来获取当天的时间#tags:swift,date,time的主要内容,如果未能解决你的问题,请参考以下文章

在哪里可以找到 HTML 格式的 SWIFT 表单?

如何全局导入 Swift 框架?

如何在swift(ios)中将字符串格式的日期转换为另一种字符串格式[重复]

Swift 3 中的 JSON 解析

消息线程`MessageKit`swift的左对齐

iOS Swift - Google Place API (Web) 以一种奇怪的格式返回 JSON