Questions tagged [ios16]

Use for questions specific to Apple's iOS 16 mobile operating system for iPhone and iPad, released in 2022. General iOS questions should use the [ios] tag.

487 questions
15
votes
2 answers

iOS 16 CTCarrier deprecation

For iOS 16, CTCarrier looks to have been deprecated. https://developer.apple.com/documentation/coretelephony/ctcarrier What will be the correct way, going forward, to receive information regarding carrier information such as MCC, MNC, and ISO…
daredevil1234
  • 1,303
  • 1
  • 10
  • 34
14
votes
4 answers

iOS 16 keyboard safe area not updated on push

There's a strange keyboard issue on iOS 16, when pushing new screens. It seems the keyboard safe area is not updated when you come back from the pushed screen. It's even reproducible with this chunk of code on an empty project: struct ContentView:…
12
votes
2 answers

How to remove "search web" option for selected text iOS 16 xcode14 beta

I'm having trouble removing this tick when text is selected, I've tried this: class CustomUITextField: UITextField { open override func canPerformAction(_ action: Selector, withSender sender: Any?) -> Bool { return false } } which…
Pontus
  • 44
  • 13
12
votes
5 answers

iOS 16 Simulator: Running an app in the simulator results in a ".xpc error"

After updating to macOS 13.0 Beta and installing Xcode 14.0 Beta we run an app where we set the target OS to 16. The following error occurs: The iPhones simulators won't start either when started manually: Here the detailed error message…
11
votes
1 answer

iOS16 Bug Keyboard breaks layout on sheet dismissal SwiftUI

In iOS16 faced a bug with keyboard inside sheet, when sheet is dismissing keyboard disappears(what is ok), but layout is not updated. I saw only 1 question on same problem and wondering maybe somebody found a temporary workaround until Apple don't…
10
votes
1 answer

SwiftUI Plain List How to remove top header padding in iOS16

I'm looking for a way to remove top section padding in my SwiftUI List With iOS 15, we can do UITableView.appearance().sectionHeaderTopPadding = 0 However, with iOS 16, List has been reimplemented with UICollectionView and I couldn't find a way to…
Ryan_Chau
  • 233
  • 2
  • 19
9
votes
1 answer

Apple/iPhone/iOS Development Distribution Developer Mode required since iOS 16

I have developed (and used) an iOS App for years now which I do not want to publish to the App Store. Until iOS 16 everything was fine with development/distribution, I think that I needed to release a new build once a year to keep it running (I…
9
votes
2 answers

Vision scan not recognising GS1 barcode special character on iOS16

We are using the Vision library to scan a GS1 barcode. The library does not recognize the special character "GS" in the iOS 16 versions. "GS" --> Group Separator character (ASCII 29) We do not encounter such an issue on older versions. For example…
AresProductions
  • 508
  • 1
  • 9
  • 23
9
votes
5 answers

How to implement Passkeys

I'm trying to learn more about Apple Passkeys. I use firebase as a backend and it seems like actually integrating it in my site is a hassle without having a custom backend… Are there any solutions for Passkeys+Firebase implementation? Can't really…
idanasd149
  • 93
  • 1
  • 3
9
votes
2 answers

iOS 16 Beta 5 AVAudioSession setCategory produces strange error 'what'

After recently installing iOS 16 beta 5, we are experiencing an issue with try AVAudioSession.sharedInstance().setCategory(, options: .mixWithOthers), in which we get an error, and lose the connection. Here is the…
cohen72
  • 2,830
  • 29
  • 44
8
votes
0 answers

NavigationTitle delay on iOS 16.1 when using NavigationSplitView

Is anyone else facing this issue with iOS 16.1 NavigationSplitView where the NavigationTitle loads after the view is loaded? – works fine on iOS 16.0. (https://i.stack.imgur.com/G0IUG.gif) It's literally the same code, but it's giving me issues…
8
votes
4 answers

Nested ScrollView in a List + refreshable strange behaviour in iOS 16

In my SwiftUI app I've a List with nested ScrollView, since I've updated my iPhone to iOS 16 the refresh on the main List has a strange behavior. It seems that every ScrollView has their own refresh. The issue is that I've applied the .refreshable…
mattialerda
  • 187
  • 2
  • 12
8
votes
2 answers

Xcode - physical iOS - unsupported OS version (iOS 16) (cannot launch on real device)

After updating OS version on my iPhone to iOS 16, I got message in Xcode telling that the version install on the physical device is unsupported, hence I cannot launch the app on that device :(
spatak
  • 1,039
  • 1
  • 14
  • 25
8
votes
5 answers

iOS16+ Present UIViewController in landscape only for single screen not working [Swift 5.7]

Before iOS 16 presenting a single screen in landscape is fine for portrait application. The working code is as below. Remark: Whole application is in Portrait mode only. override public var shouldAutorotate: Bool { return false } override…
Chetan Prajapati
  • 2,249
  • 19
  • 24
8
votes
0 answers

Why does the navigation title display mode change from large to inline when popped in iOS 16?

When I pop from a pushed view that has a display mode of inline the display mode of the parent view which was originally large is changed to inline and the user has to scroll down for the title to revert back to its original mode. Q: How do I…
1
2
3
32 33