Hi,
This code is successfully run until iOS 13.2.
Now my iPhones and iPads are update to 13.2.2. My App shows date time parse error. How can I fix it.
B4X:
str1 ="11/09/2019 03:17:43" 'this is date time sample it got from b4j server
Do While str1.Contains(" ")
str1 = str1.Replace(" ","|")
Loop
Dim serverDateTime() As String
serverDateTime = Regex.Split("\|", str1.Trim)
DateTime.DateFormat = "MM/dd/yyyy"
DateTime.TimeFormat = "HH:mm:ss"
Dim ServerTick As Long = DateTime.DateTimeParse(serverDateTime(0), serverDateTime(1)) ->error in iOS 13.2.2
This code is successfully run until iOS 13.2.
Now my iPhones and iPads are update to 13.2.2. My App shows date time parse error. How can I fix it.