Questions tagged [ios14.5]

15 questions
41
votes
5 answers

React Native / iOS SDK. No matching function for call to 'RCTBridgeModuleNameForClass' after update iOS SDK to 14.5

I have updated the iOS SDK platform to version 14.5. The Xcode version is now 12.5. After updating, I cannot launch the application on my device. And the compiler throws an error: No matching function for call to 'RCTBridgeModuleNameForClass' I…
Tomas
  • 1,567
  • 3
  • 21
  • 38
5
votes
1 answer

SwiftUI Unexpectedly NavigationLink pops automatically

I have a simple use case where a screen pushes another screen using the NavigationLink. There is a strange behaviour iOS 14.5 where the pushed screen is popped just after being pushed. Code: NavigationLink(destination: EmptyView()) { EmptyView()}…
4
votes
1 answer

How to filter the images shown on the PHPickerViewController to those selected for limited access

How do I filter the images shown on the PHPickerViewController to those that have been selected under limited access by the user? Or do I need to use a different picker? I've been struggling with this for a few days now. Any help would be…
Quailcreek
  • 125
  • 2
  • 9
4
votes
2 answers

Why i need to set Analytics.setAnalyticsCollectionEnabled(true) if it is true as default ? Firebase + iOS

Since my last update firebase dashboard is almost empty. At first I did think is new iOS 14.5 policy problem but refer to: https://firebase.google.com/docs/ios/supporting-ios-14 I play around with settings and noticed that when I…
Hopsa
  • 425
  • 3
  • 10
3
votes
0 answers

Accessibility identifier is not working for SwiftUI ToolbarItem in iOS 14

I'm setting the accessibilityIdentifier for ToolbarItem in NavigationView, which is working fine in iOS 15.0 and above, but they are not shown up in iOS 14.x. I'm using Appium for testing accessibilityIdentifiers. I have attached the screenshot of…
Harsha
  • 760
  • 1
  • 7
  • 21
2
votes
1 answer

Error in iOS 14.5 and 14.6 with code running fine in 14.2... how to BEGIN to solve this?

Summary: App runs fine with iOS 14.2; crashes consistently with an unhelpful error message, both simulator and device, with iOS 14.5 and 14.6. I located the code whose presence/absence produces or removes the error, but it's an essential part of…
ConfusionTowers
  • 911
  • 11
  • 34
1
vote
0 answers

Navigation Bar doesn't alway vertically center buttons and title text in the bar?

I am upgrading an app from iOS 12 to iOS 14.5. The app has a navigation bar. When I run it in the Simulator on an iPhone SE (2nd gen), 8, 8+ or iPod (7th gen) the navigation bar correctly displays the buttons and title text as vertically centered in…
islander
  • 31
  • 2
1
vote
2 answers

How to reset the app tracking transparency status to notDetermined?

I have an iOS app and I want to test the ATT dialog related code. Once the app is installed, on subsequent reinstalls the user's choice is persisted and the toggle is shown in the settings (Settings > Privacy > Tracking) Is there any way to mimic…
Andrei Nagy
  • 497
  • 1
  • 4
  • 15
1
vote
0 answers

iOS 14.5 - [Assert] Someone is removing an active search controller while its search bar is visible

Started getting the below mentioned error, with the upgrader to iOS Version 14.5. It works fine in 14.4 version without any issues. This is related to the search bar. When the text is typed, it doesn't open the keyboard and freeze the screen. It…
Jatin
  • 11
  • 2
0
votes
0 answers

SwiftUI toolbar button item issue

I have a ToolbarItemGroup with a navigation link and a button. With the current setup when I hit "Add" it goes to the AddNewTripView just fine but when I hit the back button (to return to the list view) it goes back to the previous view and then…
OEZ
  • 55
  • 8
0
votes
1 answer

Updated Reverse Geolocation

There are a number of examples showing how to do reverse geolocation, but nothing recent on implementation in SwiftUI. My current code uses the iPhone GPS to generate coordinates that are used with maps to show the location. I would also like to…
Galen Smith
  • 299
  • 2
  • 14
0
votes
1 answer

Unity Facebook SDK & iOS 14.5: login miss understanding

Apple updated IDFA terms for iOS 14.5 and as a result, Facebook released the new way to login called “Facebook Limited Login”. The question is: should I change Facebook login mode from LoginWithReadPermissions() to “Facebook Limited”? I’ve got some…
0
votes
3 answers

Date and time picker on iOS 14.4

I added Date picker view as keyboard controller on the UItextfiewld still now it was working properly but in latest version of iOS 14.4 getting date picker view very small. here I am attaching the screenshot for it How we can solve this in iOS 14.4…
Sky Clones
  • 26
  • 3
0
votes
0 answers

Animation issue when Long-Press is canceled - SwiftUI, iOS 14.5

I'm still learning and trying to understand the ins and outs of swiftUI. Currently, I focus on understanding gestures and animations and here is an issue that seems unsolvable at my experience level: The problem: I experience unexpected behavior if…
nevrx
  • 37
  • 6
0
votes
1 answer

indexedDB.open method not effect

environment: use webview load remote url in ipad(iPad mini5, the version is 14.6), when the remote url loaded and execute then code is shown below, and nothing print. It seems that indexedDB.open() does not have any return. After my testing, there…