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
5
votes
1 answer

iOS 16 NavigationBar sets large title and hides inline title

When checking our app for bugs on iOS 16 we have realized that behavior on the NavigationBar changes, even on non 14 Pro models. There are multiple issues and we are wondering how to fix them. All issues came with no change in code. Just running the…
JanMensch
  • 1,720
  • 1
  • 18
  • 27
5
votes
4 answers

Xcode14 crash on launch: dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib

When I upgrade my Xcode to 14, my app crashed and Get an error message: dyld: Library not loaded: /usr/lib/swift/libswiftCoreGraphics.dylib It's only happen on devices with iOS version below 13,like iOS 12/11,
Tom Peter
  • 53
  • 1
  • 3
5
votes
2 answers

Disable Border of cell in iOS 16 / Xcode 14

iOS 16/Xcode 14 adds a blue border around cells in sidebar. How can this be removed? My cell is a custom class derived from UICollectionViewListCell.
Phantom59
  • 947
  • 1
  • 8
  • 19
5
votes
1 answer

iOS 16 Autorotation failure

I am seeing a strange issue with autorotation on iOS 16 that is not seen in other iOS versions. And worse, the issue is NOT seen if I connect device to XCode and debug. It is ONLY seen when I directly launch the app on device by touching the app…
Deepak Sharma
  • 5,577
  • 7
  • 55
  • 131
5
votes
1 answer

iOS 16 bug - ViewController does not respond to taps

Edit: per the request of the commenters, we've created a small project that you can use to reproduce the issue. https://github.com/Coursicle/ReproducingiOS16PopUpControllerBug. Notice that when you run this project on iOS 15 or below, the pop-up…
monstermac77
  • 256
  • 3
  • 24
5
votes
0 answers

Textfield is dismissed when setting a new textfield focus in iOS 16

I'm having an issue in Xcode 14 beta where as you can see in the images below the keyboard is dismissed after entering some text whereas in iOS 15 the keyboard stays in place which is the behaviour I want. What I'm doing is in .onSubmit I'm creating…
Peter Warbo
  • 11,136
  • 14
  • 98
  • 193
5
votes
2 answers

Lockscreen swift widget only available to iOS 16 users

I have multiple widgets that are for iOS 14 users and above. But with the new lockscreen widgets, it's only available to iOS 16 users. How can I only make the bottom two widgets for iOS 16 users? If I uncomment the top line then I believe it will…
Mark
  • 51
  • 3
4
votes
0 answers

Disable Automated PDF Analysis in iOS 16 PDFKit

Since the upgrade to iPadOS 16, Xcode's console has been filled with messages such as [VKImageAnalyzer processRequest:] returned 0 or [VKImageAnalyzer processRequest:] block returned NULL analysis - this happens in the simulator, and on the physical…
Ron Regev
  • 459
  • 2
  • 18
4
votes
2 answers

How to pop to root view via navigation stack in iOS 16

As we know Apple have introduced NavigationStack in SwiftUI available from iOS16.* Let say I have created ViewA, ViewB, ViewC, ViewD And now I have navigated like ViewA->ViewB->ViewC->ViewD Now I am looking to pop to root view i.e on ViewA from…
Anupam Mishra
  • 3,408
  • 5
  • 35
  • 63
4
votes
0 answers

App hangs when video export finishes on iOS 16 (AVFoundation)

The issue started happening randomly after iOS 16 update. For video exporting AVFoundation's AVAssetExportSession is used. The issue happens only when AVVideoComposition's animationTool property is applied. The ui freezes when the export process…
4
votes
1 answer

How to size content for presentation detents in SwiftUI

I can display a sheet with a custom height with detents in SwiftUI like this. .sheet(isPresented: $showSheet) { MySheet() presentationDetents([.height(500), .large]) } Is there a way that I can measure the exact height of my view…
Berry Blue
  • 15,330
  • 18
  • 62
  • 113
4
votes
0 answers

Flutter always show a popup " appname World like to paste from safari" when paste textfield

anyone can help me I got a new issue when update ios 16 on my device I create a flutter project and add simple text filed to new application and build to my iphone 13 that use ios 16 when i try copy some text from another app or safari , once i try…
Y.P.
  • 41
  • 2
4
votes
1 answer

Update live activity without push notifications and with the app in background

Is there any other way to update the live activities besides using push notifications when the app is in background? Is it possible to schedule an update, for example? For context, I have a live activity that needs the content updated 2 hours after…
herd
  • 155
  • 2
  • 19
4
votes
2 answers

SwiftUI add `menu` in `.safeAreaInset` cause strange layout issue

Here is the sample project source code: sample code import SwiftUI struct TestMenuInSafeAreaInset: View { @State private var message = "" var body: some View { VStack { Rectangle() .fill(Color.blue) …
ZYiOS
  • 5,204
  • 3
  • 39
  • 45
4
votes
0 answers

iOS 16 - Is there a way to exclude my App from Stage Manager programmatically

The app will be displayed in a smaller window, when Stage manager enabled in iPad OS 16. Apple iPadOS 16 Introduced New feature Stage manager in M1 chip based iPad Pro Devices. This feature affects my application screen content. is there anyway to…
Jay
  • 147
  • 1
  • 6