Questions tagged [ios13.4]
25 questions
0
votes
0 answers
-[UITextMultiTapRecognizer tag]: unrecognized selector sent to instance at iOS 13.4 and above
My app is based on WebView. It's a pretty old app written on Objective C.
When I click on the same text field, the application crashes. But if I switch between text fields, then everything is fine.
When I click on the same text box again, the…

Nikita Koniukh
- 21
- 4
0
votes
2 answers
Missing argument for parameter 'delegate' in call // JSON file corrupted in SWIFT?
I am following an e-class tutorial for SWIFT // XCODE 11.4 and I have to fetch data from Open Weather API and display it on the interface where people can type in a city and the view controller will display temperature, cloud icon, and…

Calum Nguyen
- 7
- 3
0
votes
2 answers
Timer Countdown using dictionary to retrieve key value // "cannot convert value of type String to expected argument type String"
I'm trying to set up an egg timer, and display a countdown when the button is pressed. If "Soft" is pressed, the countdown begins at 300 seconds and so on.
However, this message keeps coming up "cannot convert value of type String to expected…

Calum Nguyen
- 7
- 3
0
votes
2 answers
Getting path of file after picking/capturing in swift gives error domain=nscocoaerrordomain code=260
I'm trying to upload file after picking it from gallery/capturing from camera but it gives error domain=nscocoaerrordomain code=260 for the file path, I'm not sure why I got this error and if it's related to really unfound file path, and if it is so…

Samah Ahmed
- 419
- 8
- 24
0
votes
0 answers
SVG Animation in iOS 13.4 (Safari) with js
I have seen this thread here SVG animation struggles with Safari 13.1 (Mac OS & IOS) which seems to address the 'why' it's not working but I am not sure how to modify my code to add this suggestion:
0
votes
1 answer
Option NSKeyValueObservingOptions.initial in block-based KVO
The documentation says [when .initial is used]: The change dictionary in the notification will always contain an newKey entry if new is also specified but will never contain an oldKey entry.
In block-based KVO observer receives change struct, where…

Alexey
- 79
- 7
0
votes
0 answers
iPadOS/iOS 13.4 Enterprise Apps crash
I have notice that my enterprise apps after update to iPadOS 13.4 crash (like when provisioning profile expires, but they are up to date) but seems like when user redownload ipa file from server and install it again everything works. What is even…

Bercikk13
- 3
- 1
0
votes
2 answers
Why is the next method of UIApplication not executed after iOS 13.4?
extension UIApplication {
override open var next: UIResponder? {
print("next")
return super.next
}
}
The above code was executed before iOS 13.4, and "next" is printed before the application(_:,…

Rakuyo
- 390
- 3
- 15
0
votes
1 answer
AES encryption not working properly on iOS 13.4
My iOS application creates a key using AES encryption and send it with all the APIs , and it is being decrypted at the server end, now after the update of OS 13.4 the key created from the device(not the simulator) is in incorrect and the following…

TahirRaza
- 81
- 8
0
votes
2 answers
Xcode 11.4 Navigation Bar Button Issues
Since updating to Xcode 11.4 I'm running into the issue that I can't figure out how to change the color of the back arrow in the navigation bar.
Before I was able to simply use:
navigationBar.barTintColor = DisplayUtils.sweetGreenColor()
However,…

Karl Barek
- 83
- 5