簡體   English   中英

在Swift中將12小時UTC日期轉換為24小時本地TimeZone格式

[英]Convert 12Hr UTC date to 24Hr Local TimeZone format in Swift

根據UTC到IST的轉換工具,如果UTC 12Hr日期字符串為= "2018-12-31 07:35 PM"則需要將其轉換為"2019-01-01 01:05" (IST中為24Hr格式) [注意:此處12Hr IST轉換日期為“ 2019-01-01 01:05 AM”]

那么如何將12Hr UTC日期轉換為24Hr IST dateFormat?

當前代碼是:

static func convertUTCdateToLocalTimezoneDate(dateString: String, fromDateFormat: String, toDateFormat: String) -> String {
        if dateString.count > 0 {
            let dateFormatter = DateFormatter()
            let is24Hr: Bool = AppUtility.isSystemTimeFormatIs24Hr(dateString: AppUtility.getIphoneCurrnetTime())
            let fromDateFormatLocal = is24Hr == true ? kDateIn24Format : kDateIn12Format
            dateFormatter.dateFormat = fromDateFormatLocal
            dateFormatter.timeZone = TimeZone(abbreviation: "UTC")
            let date = dateFormatter.date(from: dateString)
            var timeStamp = ""
            dateFormatter.dateFormat = toDateFormat
            dateFormatter.timeZone = NSTimeZone.local
            timeStamp = dateFormatter.string(from: date!)
            return timeStamp
        }
        return ""
    }

static func isSystemTimeFormatIs24Hr(dateString: String) -> Bool {
    let formatter = DateFormatter()
    formatter.locale = NSLocale.current
    formatter.dateStyle = .none
    formatter.timeStyle = .short
    let amRange: NSRange? = (dateString as NSString).range(of: formatter.amSymbol)
    let pmRange: NSRange? = (dateString as NSString).range(of: formatter.pmSymbol)
    let is24h: Bool = amRange?.location == NSNotFound && pmRange?.location == NSNotFound
    return is24h
}

以下代碼將解決您的問題

    func dateFormatter() -> Date? {
        let inputDateString = "2018-12-31 07:30:00 PM"

        let outFormatter = DateFormatter()
        outFormatter.locale = Locale(identifier: "UTC")
        outFormatter.timeZone = TimeZone(abbreviation: "UTC")
        outFormatter.dateFormat = "yyyy-MM-dd hh:mm:ss a"

        let outDate = outFormatter.date(from: inputDateString)

        outFormatter.locale = Locale.current
        outFormatter.timeZone = TimeZone.current
        outFormatter.dateFormat = "yyyy-MM-dd hh:mm a"

        let date12HrsString = outFormatter.string(from: outDate!)
        print("12 Hrs Format: \(date12HrsString)")

        outFormatter.dateFormat = "yyyy-MM-dd HH:mm:ss"
        let date24HrsString = outFormatter.string(from: outDate!)
        print("24 Hrs Format: \(date24HrsString)")

        return outDate
    }
func getDateFrom(_ dateString: String, withFormat formatString: String, timeZone: String = "UTC", locale: String = "UTC") -> Date? {
    var dateToReturn: Date?
    let formatter = DateFormatter()
    formatter.timeZone = NSTimeZone(abbreviation: timeZone) as TimeZone?
    formatter.locale = Locale(identifier: locale)
    formatter.dateFormat = formatString
    dateToReturn = formatter.date(from: dateString)
    return dateToReturn
}

func getStringFrom(_ date: Date, withFormat formatString: String, timeZone: String = "UTC", locale: String = "UTC") -> String? {
    var stringToReturn: String?
    let formatter = DateFormatter()
    formatter.timeZone = NSTimeZone(abbreviation: timeZone) as TimeZone?
    formatter.locale = Locale(identifier: locale)
    formatter.dateFormat = formatString
    stringToReturn = formatter.string(from: date)

    return stringToReturn
}
let string12H = "2018-12-31 07:35 PM"

if let date = getDateFrom(string12H, withFormat: "yyyy-MM-dd hh:mm a") {
    let dateStringWith12HFormat = getStringFrom(date, withFormat: "yyyy-MM-dd hh:mm a", timeZone: "IST", locale: "IST")
    let dateStringWith24HFormat = getStringFrom(date, withFormat: "yyyy-MM-dd HH:mm", timeZone: "IST", locale: "IST")
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM