Swift中是否只有一个日期(没有时间)课程? (或基础课程)
(如果没有,但是有一个众所周知/流行的开源库,如果你能提到这个就实现了这个)
编辑:更新以澄清" (或基础课程)"
答案 0 :(得分:10)
没有仅限日期的类是Foundation框架的一部分。
这是获取NSDate对象的仅日期表示的快速方法:
let now = NSDate()
let dateFormatter = NSDateFormatter()
dateFormatter.timeStyle = NSDateFormatterStyle.NoStyle
dateFormatter.dateStyle = NSDateFormatterStyle.MediumStyle
print(dateFormatter.stringFromDate(now)) // Mar 3, 2016
NSDate总是有时间,因为日期是单个时间点。如果您如此倾向,可以创建一个没有时间组件的日期,但通常默认为12AM:
let dateString = "2016-03-03"
let dateFromStringFormatter = NSDateFormatter()
dateFromStringFormatter.dateFormat = "YYYY-MM-dd"
let dateFromString = dateFromStringFormatter.dateFromString(dateString)
// dateFromString shows "Mar 3, 2016, 12:00 AM"
对于Swift 3.0 +
let dateFormatter = DateFormatter()
dateFormatter.dateFormat = "YYYY-MM-dd"
// optional
let date = dateFormatter.date(from: "2016-03-03") // Mar 3, 2015 at 12:00 AM
答案 1 :(得分:8)
Speaker
中没有仅限日期的类,但是您可以使用日历从Topic
对象中剥离时间。在 Swift 4 中:
Academics/PhD Resources/MMED/rabiesElimination/Writing/Report_V7.pdf
或作为扩展名:
In readLines(logfile) : incomplete final line found on 'Report_V7.log'
答案 2 :(得分:6)
Swift 3.0
let date = Date()
let dateFormatter = DateFormatter()
dateFormatter.timeStyle = DateFormatter.Style.none
dateFormatter.dateStyle = DateFormatter.Style.short
dateFormatter.string(from: date) // 12/15/16
答案 3 :(得分:1)
如果要在Swift 4中获取Date对象,就像在尝试将Date对象存储在核心数据中时一样,可以使用此方法。
private func getDate() -> Date {
let today = Date()
let dateFormatter = DateFormatter()
dateFormatter.timeStyle = DateFormatter.Style.none
dateFormatter .dateStyle = DateFormatter.Style.short
let dateAsString = dateFormatter.string(from: today)
return dateFormatter.date(from: dateAsString)!
}
基于@John R Perry的回答。
答案 4 :(得分:0)
我想说的是指定日期值的字符串,如“YYYY-MM-DD”+ NSCalendar.Identifier可能代表一个日期。
有了这个,你就可以将这个日期转换成任何其他日历。
答案 5 :(得分:0)
我知道已经有一些不错的答案..只是想在这里传递此答案,它会显示“ true”,因此,如果您使用组件或只是将时间设置为00:00:00,则基本上是相同的。 ..
let startComp = Calendar.current.dateComponents([.year, .month, .day], from: Date())
let first = Calendar.current.date(from: startComp)!
print(first == Calendar.current.date(bySettingHour: 0, minute: 0, second: 0, of: Date()))
希望这对某人有帮助:)
答案 6 :(得分:0)
Swift Standard库或Foundation(从iOS 13开始)没有日期(没有时间)类型。
这里是CalendarDate
类型,可用于在Swift中将日期表示为年,月,日:
也可以通过以下网址的Swift软件包管理器获得:CalendarDate
import Foundation
/**
CalendarDate is a Swift type that represents a Date as year, month and day value.
Includes support for formatting as a ISO 8601 string ('yyyy-mm-dd') and JSON coding.
*/
public struct CalendarDate: Equatable, Hashable {
public let year, month, day: Int
public static var today: CalendarDate {
CalendarDate(date: Date())
}
public init(year: Int, month: Int, day: Int) {
self.year = year
self.month = month
self.day = day
}
public init(date: Date) {
let calendar = Calendar.current
self.year = calendar.component(.year, from: date)
self.month = calendar.component(.month, from: date)
self.day = calendar.component(.day, from: date)
}
public var date: Date {
DateComponents(calendar: Calendar.current, year: self.year, month: self.month, day: self.day).date!
}
}
extension CalendarDate: LosslessStringConvertible {
public init?(_ description: String) {
if let date = Self.formatter.date(from: description) {
self.init(date: date)
} else {
return nil
}
}
public var description: String {
Self.formatter.string(from: self.date)
}
private static let formatter: DateFormatter = {
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd"
return formatter
}()
}
extension CalendarDate: Codable {
public init(from decoder: Decoder) throws {
let container = try decoder.singleValueContainer()
let string = try container.decode(String.self)
guard let value = CalendarDate(string) else {
throw DecodingError.dataCorruptedError(
in: container,
debugDescription: "Not a valid calendar date: \"\(string)\""
)
}
self = value
}
public func encode(to encoder: Encoder) throws {
var container = encoder.singleValueContainer()
try container.encode(self.description)
}
}