Post not yet marked as solved
WKPreferences.javaScriptCanOpenWindowsAutomatically still not deprecated .
As WKPreferences.javaScriptEnabled by default it its true , I can able to skip setting javaScriptEnabled explicitly and proceed further.
Can anybody guide here, what is the impact in future OS if I still uses WKPreferences without javaScriptEnabled?
Or whether I need to have both WKPreferences and WKWebpagePreferences user options set and assigned to WKWebViewConfiguration's preferences and defaultWebpagePreferences respectively
Post not yet marked as solved
For Simulator workaround is uncheck the option "connect hardware keyboard" from Simulator -> I/O -> Keyboard
In device it is working .
Post not yet marked as solved
The issue resolved by having the ipa file and OTA link generated inside a server which has secured certificate.
Means OTA link should point to https URL + linked ipa URL in the OTA URL also should point to https
Post not yet marked as solved
The issue resolved by having the ipa file and OTA link generated inside a server which has secured certificate.
Means OTA link should point to https URL + linked ipa URL in the OTA URL also should point to https
Got the issue when upgrading from 14.8 to 15.0 public release also.
Removing and installing again one of SSO certificate fixed this.
Issue resolved by resetting OS to 14.7.1 and installing again Beta 7 directly.
Reported issue occurred with upgrade of OS from 14.7->Beta 4->Beta5->Beta6->Beta7
With Catlina 10.15.1, when i try to upgrade xcode 11.1 to xcode 11.2, it asked apple id sign in. After successfull login got "some uncaught error occurred"When checked in system perference, in the apple id icon it shows notification to sign-in to icloud. With this sign in , after trying upgrade worked.Why it is made mandatory to forcibly sign-in to icloud. Observed in iPhone also using remainders also asking for upgrade which in turn asks icloud sign-in?
Post not yet marked as solved
Tested with 13.2 beta 3 in iPad Air 2. Delay in touch ID alert still there
Post not yet marked as solved
One more observation, when touch ID alert shown if i do background and foreground application crashes.
In ipad device still not working 13.1.2
Post not yet marked as solved
Issue got resolved in iOS 13.1.2
Format "E MMM d yyyy HH:mm:ss 'GMT'ZZZ" solved our problem.
The sample code is let dateFormatterGet = DateFormatter() dateFormatterGet.dateFormat = "E MMM d yyyy HH:mm:ss Zzzz" dateFormatterGet.locale = Locale(identifier: "en_US_POSIX") dateFormatterGet.timeZone = TimeZone(abbreviation: "UTC") let date1: Date? = dateFormatterGet.date(from: "Mon Dec 31 2012 13:30:00 GMT+0530") print(date1!) -> Fatal error: Unexpectedly found nil while unwrapping an Optional value:Printing description of date1:▿ Optional<Date> ▿ some : 2001-01-01 00:00:00 +0000 - timeIntervalSinceReferenceDate : 6.94278977517907e-310There is no logs generated.Tried in xcode 11 GM swift sample project.