Questions tagged [ios15]

Use for questions specific to Apple's iOS 15 mobile operating system, released in 2021. General iOS questions should use the [ios] tag.

573 questions
0
votes
1 answer

Can I use Swift async/await to call void methods in succession?

In a ViewModel, I'm currently using callbacks to 1. make an API call and set data1, 2. use data1 in a second API call to set data2, then use data2 in a third function to parse and set a published value to be used in a View. The examples I've seen so…
dooblr
  • 458
  • 1
  • 5
  • 18
0
votes
1 answer

Alternative to AVSystemController_AudioVolumeNotificationParameter post iOS 15?

The approved KVO approach for responding to device volume level changes stops detecting volume button presses after min/max outputVolume is reached. I'd like to continue to receive those button press events after min/max, so I assume I need to try…
0
votes
0 answers

Xamarin.Forms iOS 15 causing App to Freeze/Crash

After the release of iOS 15 we have been seeing an issue of freezing and then an app crash for our application and it seems to be a native library that we cannot debug. All of our Nugets are up-to-date including running on the latest Xamarin.Forms…
0
votes
0 answers

iOS 15 - SwiftUI Picker crashes when using in a Form view

I have this code: struct MyPickerSelection: View { @State private var picker1selection = 1 @State private var picker2selection = 1 @State private var showPicker1 = false @State private var showPicker2 = false var body: some…
lcpr_phoenix
  • 373
  • 4
  • 15
0
votes
1 answer

iOS 15 Core Data Sync with CloudKit public database resulted in `Custom Zone` not allowed error

I'm following this WWDC2020 video in trying to specify cloudKit database scope to public, like cloudKitContainerOptions.databaseScope = .public However Xcode 13 always complained that com.apple.coredata.cloudkit.zone:__defaultOwner__ =
CodeBrew
  • 6,457
  • 2
  • 43
  • 48
0
votes
0 answers

iOS15 UITableView section header clear background loses transparency when header is pinned

I had pinned section headers with a clear background working in iOS14 using UIBackgroundConfiguration and the following code: if #available(iOS 14.0, *) { var backgroundConfiguration = UIBackgroundConfiguration.listPlainHeaderFooter() …
Brian M
  • 3,812
  • 2
  • 11
  • 31
0
votes
1 answer

"Cannot find plugin.xml for plugin kapsel-plugin-i18n. Please try adding it again." when I'm trying to install kapsel-plugin-i18n for iOS 15 (local)

Do you know which version of kapsel-plugin-i18n might work with iOS 15 ? Which version of npm and node might fit with Cordova 9.0.0 ? Indeed, I had to upgrade the Kapsel plugins for my application to fit with iOS 15 but there is an error when I try…
0
votes
3 answers

UITableViewCell Separator disappearing in iOS15

I try to add separator line like this. image1 But separator line disappearing when there is no data. image2 Can anyone please help me solve this issue?Thanks.
towa x
  • 3
  • 1
0
votes
0 answers

TextField input soft keyboard return button weird navigation on iOS 15

I have a TextField in my view for search product. When touch TextField - the soft keyboard appear and write text normally. When press the return button the keyboard disappear normally in iOS 14 but when run on iOS 15 device it weirdly navigate to…
Mahmudur Rahman
  • 638
  • 9
  • 25
0
votes
2 answers

IOS 15 coping images from Ionic app on long press

I just started testing my Ionic 5 app in IOS 15.0.2 and when I long press on any image it's allowing me to drag the image to other apps and photos and directly save it. When I drag the image to any text editor app, it shows the base64 string of the…
Tapas Mukherjee
  • 2,088
  • 1
  • 27
  • 66
0
votes
0 answers

UIGestureRecognizer override the collectionViewCell in iOS 15, Xcode 13.0

B: Transparent View with alpha 0.1 and attached Gesture recognizer, that will dismiss the view bView.addGestureRecognizer(UITapGestureRecognizer(target: self, action: #selector(dismisClicked(_:)))) C: UIView D: Collection View Cells iOS 14 work…
Salar Pro
  • 43
  • 5
0
votes
1 answer

iOS15, link between text is disappear every time when I click on another list’s text

I got a strange issue with iOS app as I’m upgrade some of the code for iOS 15 this issue is only happening to one text line “Setting” in the list this is code I’m using - (UITableViewCell *)tableView:(UITableView *)tableView…
Steven Smith
  • 406
  • 5
  • 19
0
votes
0 answers

Dealing with deprecation warnings by simply ignoring the warnings

The developers of gcdwebserver version 3.5.4 added #pragma clang diagnostic ignored "-Wdeprecated-declarations" around lines that were causing deprecation warnings in iOS 15. Specifically, lines having to do with CC_MD5 and…
Jeff
  • 2,659
  • 1
  • 22
  • 41
0
votes
2 answers

iOS 15 - UITableViewCell accessoryView Frame issue

I have a custom UIView containing UILabel as cell.accessoryView = containerView. It was working fine until iOS 14 but as of iOS 15, the containerView is changing its frame on tableView reload. It is displaying properly on the first load but…
Hassy
  • 5,068
  • 5
  • 38
  • 63
0
votes
0 answers

UICollectionViewCell background color not working in iOS 15

I have UICOllectionViewCell and I was using setSelectedMethod to determine which background color I have to show. It is working fine in iOS 14 but in iOS 15 it's not working. Here is the code - (void)setSelected:(BOOL)selected { if (selected) { …
Rahul Vyas
  • 28,260
  • 49
  • 182
  • 256