Questions tagged [ios13.4]

25 questions
5
votes
1 answer

Why does setting minWidth to .infinity crash SwiftUI app with EXC_BAD_INSTRUCTION?

Here is the exact code that I am running on iOS 13.4/Xcode 11.4: import SwiftUI struct TestView: View { var body: some View { VStack() { Text("Hello") } .frame(minWidth: .infinity) } } struct…
Zorayr
  • 23,770
  • 8
  • 136
  • 129
5
votes
1 answer

Can't handle touches simultaneously with WKWebView on iOS 13.4

Problem: Starting from iOS 13.4 WebKit intercepts gestures that previously were passed to the system and could be handled by UIGestureRecognizer simultaneously Demo project: I created WKWebView and added it to UIViewController's view. I created also…
parbo
  • 243
  • 3
  • 7
5
votes
2 answers

WKWebview allowsLinkPreview to false breaks text selection

We have an app that uses WKWebview, but sets allowsLinkPreview to false because we don't want link preview behavior. It seems that starting with iOS 13.4, on devices that don't have 3D touch functionality (older devices and newer iphone models),…
Jon Brooks
  • 2,472
  • 24
  • 32
4
votes
1 answer

Secondary mouse click on iOS13.4

Just playing with the new mouse/trackpad support in iOS13.4 and trying to detect both primary and secondary mouse button clicks. I can detect them (primary OR secondary clicks) by setting the buttonMaskRequired on a UITapGestureRecognizer to EITHER…
Scotty
  • 2,019
  • 1
  • 20
  • 31
2
votes
1 answer

SwiftUI. App crashes on iPad with iOS 13.4-13.7 when long-pressed

It's my first question on stackoverflow. Please correct me if I wrong with formatting topic. I get crash of application when try use long press (?haptic touch?) on real iPad. Also it's reproducible on Simulators iPad with Force Touch click on Magic…
Anf139
  • 21
  • 3
2
votes
0 answers

html5 app freezes in ios13 after navigating to an external url in in-app standalone safari browser and back

Issue My web application built using nuxt and installed as web app on iphone becomes unresponsive after I open or visit an external link from the app. Issue specifically comes iOS 13.4 and above on real devices. Simulators works fine. Devices iPhone…
2
votes
1 answer

iOS 13.4 Crashes app with vague message: precondition failure: type check failed: 101, expected Text, got _HiddenModifier

Sorry to be vague in the description here, but this has caused my app to be completely DOA when a user attempts to use my search feature. This did not happen before iOS 13.4 and the error message is not helpful at all. Cant find any info. Has anyone…
JerseyDevel
  • 1,334
  • 1
  • 15
  • 34
1
vote
1 answer

DateFormatter. Strange behaviour on iOS 13.4.1 while 12 hour date style set in the iOS settings

I found out some strange behaviour of DateFormatter on iOS 13.4.1 while 12 hour date style set in the iOS settings and now is PM. class DateFormatterTest { static var dateFormatter: DateFormatter = { let formatter = DateFormatter() …
Dmitry
  • 2,963
  • 2
  • 21
  • 39
1
vote
0 answers

After iOS 13.4.1 update WKWebView not able to recognise tap gesture

After ios update to 13.4.1 to able to detect tap gesture in WKWebView, my code as follow: override func viewDidLoad() { super.viewDidLoad() let tapGesture = UITapGestureRecognizer(target: self, action: #selector(viewTap) ) …
Naresh Pawar
  • 179
  • 2
  • 3
  • 15
1
vote
1 answer

Using swift does iOS 13.4 have class CIVibrance or a string "CIVibrance" or the method CIFilter().vibrance()?

Looking for class CIVibrance or a string "CIVibrance" or the method like CIFilter().vibrance() in swift. Looking at the docs some appear unavailable in swift but others are missing from Xcode. (iOS 13.4 Xcode…
1
vote
0 answers

iOS 13.4 / 13.5 / 13.5.1 : pointer (pointerup) events missing

I made a simple HTML page in which I listen to the pointerup event (each triggered event displays a log on the page). CodePen link : https://codepen.io/rlebosse/pen/JjGYqRV Since iOS 13.4 (13.5 / 13.5.1 too), when I double tap on the page, there is…
rlebosse
  • 81
  • 1
  • 5
1
vote
1 answer

Xcode 10.1 dyld_shared_cache_extract_dylibs failed iOS 13.4

I am trying to run iOS app on iPhone Xr (iOS 13.4) from Xcode 10.1 on macOS Mojave 10.14.6 version. But I get error dyld_shared_cache_extract_dylibs failed I downloaded support file for 13.4 from here I have tried all the solutions like this,…
Sushil Sharma
  • 2,321
  • 3
  • 29
  • 49
1
vote
0 answers

IndexPathForRowAtPoint Not Working iOS 13.4.1

I have a TableView populated with UITableViewHeaders (sections) ... There is a LongGesture on the Header and I use code below to drag header for re-ordering. Now this works on all my devices up to 13.3.1 but just recently was getting complaints from…
FreeAppl3
  • 858
  • 1
  • 15
  • 32
1
vote
0 answers

`MPMusicPlayerController.systemMusicPlayer.nowPlayingItem` is not change state only after Music App reopen

MPMusicPlayerController.systemMusicPlayer.nowPlayingItem is not change state only after Music App killed and reopen. Specifically, Open Music App and play music. Open created app by me. It's using…
peropero
  • 11
  • 1
1
vote
1 answer

Keyboard layout changes from AZERTY to QWERTY for secure text field- SWIFT

I'm having this weird bug where the keyboard layout changes from QWERTY to AZERTY only for the secure text fields and that too not for all textFields. I have a LoginViewController which has a passwordField , its in AZERTY. But the passwordFields on…
Thejus
  • 169
  • 12
1
2