Format error in iOS 11.3
See original GitHub issueIn PC dayjs('2018-09-06T17:00:00.000+0000')
return Thu, 06 Sep 2018 17:00:00 GMT
In Iphone dayjs('2018-09-06T17:00:00.000+0000')
return Invalid Date
Issue Analytics
- State:
- Created 5 years ago
- Comments:12 (4 by maintainers)
Top Results From Across the Web
NSDateFormatter Issue - Getting wr… | Apple Developer Forums
iOS 11.3.1 and 11.1.2. Summary: getting wrong DateTime Format In iPhone Device. we using DateTime format as yyyy-MM-dd HH:mm:ss and replace ...
Read more >Date Format Error in swift - ios - Stack Overflow
By doing this you can able to create the Date object. @Dhruv try this code it will work for creating date object as...
Read more >How to fix "Files" errors in GarageBand on iOS 11 (iPhone/iPad)
How to fix and troubleshoot the most common files errors in GarageBand on iOS 11 ( iPhone / iPad )If you have used...
Read more >Ixpand and Wireless Connect: Unsupported Format on iOS 11
Due to this thumbnails are not generated for images and you will receive an unsupported format message when opening images created with is...
Read more >iOS 11's new image format might pose problems for PC users
HEIC will be used by default on new photos on iOS 11, and it's designed to save you storage space. As it's a...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@shenghanqin I use
and works well
var startTime = “2018-05-18T16:00:00.000+0000”; startTime = startTime.replace(/(+\d{2})(\d{2})$/, “$1:$2”);
it’s work