0
A
回答
0
您可以使用此代碼到12小時格式的日期轉換爲24小時日期。
NSDate *date = your date in 12 hours format;
NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init];
[dateFormatter setLocale:[NSLocale currentLocale]];
[dateFormatter setDateFormat:@"dd-MM-YYYY HH:mm"];
NSString *dateStringInTwentyHours = [dateFormatter stringFromDate:date];
0
對於雨燕3.0
您可以使用此代碼段到12小時至24小時格式轉換。
let sourceDateString = "2015-05-29 10:40 AM"
let formatter = DateFormatter()
formatter.dateFormat = "yyyy-MM-dd hh:mm a"
formatter.locale = Locale(identifier: "en-US")
let date = formatter.date(from: sourceDateString)
print("\(date)")
formatter.timeZone = NSTimeZone.local
formatter.dateFormat = "yyyy-MM-dd HH:mm"
let strDate = formatter.string(from: date!)
print(strDate)
相關問題
- 1. 轉換24小時日期格式爲12小時格式在R
- 2. 轉換12小時格式到24小時格式在SQL Server
- 3. 將12小時日期格式轉換爲24小時格式,反之亦然?
- 4. 使用javascript轉換24小時格式爲12小時格式
- 5. 將12小時時間格式轉換爲24小時整數?
- 6. 新日期()12/24小時格式JavaScript?
- 7. 從12小時格式到24小時格式的時間轉換
- 8. php 12小時格式到24小時格式化時間轉換
- 9. 轉換24小時格式小時爲12個小時制時間在PHP
- 10. Android日期時間格式錯誤時間顯示12小時和24小時
- 11. 在XSLT1.0或XSLT2.0中將12小時格式日期轉換爲24小時
- 12. 轉換時間12小時格式
- 13. 轉換12小時至24小時格式在R
- 14. 如何將24小時格式TimeSpan轉換爲12小時格式TimeSpan?表示爲24小時格式
- 15. 轉換12小時格式的日期時間SQL Server
- 16. 正則表達式12小時和24小時時間格式
- 17. 將日期時間轉換爲24小時格式
- 18. 轉換日期時間格式12小時
- 19. 轉換24小時格式12小時大熊貓和matplotlib
- 20. hh:mm aa(12小時格式)轉換爲HH:mm(24小時制)
- 21. 使用javascript轉換12小時至24小時格式
- 22. 在Ruby中將12小時時間轉換爲24小時格式
- 23. 如何將12小時格式轉換爲水壺中的24小時格式
- 24. 如何在Postgres中將12小時時間戳格式轉換爲24小時時間戳格式?
- 25. 24小時時間格式
- 26. Flex中的時間格式「24小時制」和「12小時制」
- 27. 轉換爲時間12小時格式從包含24小時格式時間的字符串
- 28. iOS日期12/24小時格式化(目標C)
- 29. 將12小時時間格式轉換爲24小時,如mysql中所示
- 30. 24小時格式爲12小時格式
你應該閱讀的NSDateFormatter類 –
可能重複的[時間的NSDate從12小時轉化至24小時格式(http://stackoverflow.com/questions/4395832/nsdate-time-converting-from-12hr-to -24小時格式) –
可能重複的[NSDateFormatter dateFromString和iPhone在24小時格式混亂](http://stackoverflow.com/questions/2173965/nsdateformatter-datefromstring-and-iphone-in-24-hour-format -confusion) –