Questions tagged [ios-15.4]

8 questions
4
votes
0 answers

Apps Not Showing in Settings on iPhone in iOS 15.4 Swift

I recently developed an iOS app using Xcode 13.1 . I ran it on my iPhone (which is currently operating on iOS 15.4), and it worked fine. However, my app uses the location, and I have been attempting to have the user go to settings, and…
Sham Dhiman
  • 1,348
  • 1
  • 21
  • 59
4
votes
1 answer

iOS 15.4.0 ShareSheet _activityImage is not supported for proxies to out-of-process activities

From iOS 15.4.0 we have the crash on Crashlytics but don't known how to reproduce and fix it. It is producing crash due to Apple default shareSheet. I hope someone can provide some insights to fix this. Code I use to open shareSheet func…
3
votes
1 answer

iOS Keyboard doesn't show up in iOS 15.4

I'm new to iOS. I've just taken over for another developer. I recently realised that this is a major issue because users cannot use our app. The keyboard gets dismissed as soon as it's shown. So no one can enter anything in the text field/s. It's…
Devenom
  • 915
  • 1
  • 9
  • 20
2
votes
2 answers

Appium unable to take screenshot on xCode 13.3 and iOS 15.4

I woke a few days ago to run an appium UI automated test on iOS simulator which has been running perfectly without any error. I recently upgraded to iOS 15.4 and iOS 13.3 and to my surprise Appium is unable to take screenshots again. I tried…
ken4ward
  • 2,246
  • 5
  • 49
  • 89
1
vote
1 answer

iOS 15.4 Date Format "Sep" now "Sept"

The app crashes once the user selects any date of September. It only happens with iOS 15.4. I have datePicker formatted date to return always in UTC format en_GB. @objc func doneDateClicked() { let dateFormatter = DateFormatter() …
1
vote
0 answers

XCode 13.3 - iPhone 11 - iOS 15.4 - Image Assets - Background Image not loading

I am having an image assets used for loading the background image in my iOS application. The image assets contains background images that provides support for 2x, 3x, 2x Retina 4, 2x Retina HD 4.7", 3x iPhone X/iPhone Xs, 3x iPhone Xs Max and 2x…
Kamal
  • 453
  • 1
  • 10
  • 22
0
votes
0 answers

How can I fix the issue where List in SwiftUI running on IOS disappears other view in IOS 15.4 while it works fine on IOS 16.4?

List in swiftUI running on IOS make above view disappear in IOS 15.4, on IOS 16.4 everything is ok,is that have anyway to fix this issue on IOS 15.4 this is the IOS 16.4 image IOS 16.4 this is the app on IOS 15.4 IOS 15.4 struct SettingView: View { …
0
votes
0 answers

iOS 15 build by xcode 13 crash on collectionView performBatchUpdates

After updating xcode to xcode 13. My app start giving crash on the collectionview where it is using performBatchUpdates on ios 15. It's working fine on lower ios version. dispatch_async(dispatch_get_main_queue(), ^{ [self.collectionView…