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
2
votes
2 answers

iOS device not available in Flutter Device Selection list since iOS16 (Android Studio)

My iPhone does not appear in the Flutter Device Selection list in Android Studio anymore. I recently updated to iOS 16. Any ideas?
Niels
  • 1,366
  • 15
  • 21
2
votes
0 answers

Solution for the implementation of interstitial ads of admob (SwiftUI)

Starting with iOS16, there was a problem with the implementation of AdMob interstitial advertising. I am using the SwiftUI framework. I looked at many sources, but unfortunately I did not find a solution. Link to on a similar topic, but without a…
Aleksei
  • 79
  • 6
2
votes
1 answer

destination:isActive:label deprecated in iOS 16 - I need help migrating

I need help migrating my code for iOS 16 support: // // RegistrationView.swift // Recosia // // Created by Alex Slater on 16/11/2022. // import SwiftUI struct RegistrationView: View { @State private var email = "" @State private var…
robowarrior
  • 123
  • 6
2
votes
1 answer

How do I print out the data within this struct?

Is this the place to ask for clarification on previously written lines of code? I apologize if not. I'm trying to understand some Swift code for using LineCharts. Code was written for line charts using iOS16's Swift Charts. My understanding is…
mgianzero
  • 87
  • 5
2
votes
1 answer

How can I make CMTime conform to Hashable on all iOS versions?

On Xcode 14, Apple added Hashable conformance to CMTime and CMTimeRange to iOS16 only. I'm trying to make it Hashable for all iOS versions, because we have many Hashable structs that contain CMTime, and they depend on CMTime to be Hashable as…
Guy Niv
  • 23
  • 2
2
votes
0 answers

App Tracking Transparency Dialog does not appear on iOS 16.1

Apple reviewer has just rejected my app since ATT request doesn't appear: "We're looking forward to completing our review, but we need more information to continue. Your app uses the AppTrackingTransparency framework, but we are unable to locate the…
2
votes
0 answers

iOS 16 Orientation issue

I have an issue with iOS 16 for some views: My app is only in landscape orientation, but I have 2 views in portrait orientation, in previous iOS versions all works good, but now I found case with 2 different views when I go to view and hold my phone…
Yura Geyts
  • 38
  • 7
2
votes
2 answers

CIMotionBlur broken in iOS16?

The following code just does not behaves the same way previous to iOS 16 and with iOS 16. The blur effect does not seem to work correctly in iOS 16. class GameScene: SKScene { override func didMove(to view: SKView) { let shapeNode =…
chepiok
  • 193
  • 12
2
votes
2 answers

How to set a tint for a DatePicker in SwiftUI?

In iOS 16 accentColor(_:) modifier has been deprecated, and Apple suggests using tint(_:) instead. However, I found it does not work on the DatePicker. It works as expected on the Button, for instance. I was experimenting with applying .tint…
Ryba
  • 113
  • 6
2
votes
1 answer

How to set a custom font for accessoryInline iOS 16 Lock Screen widgets?

I want to set a custom font for inline widget text. I put the custom font to the accessory Rectangular and it's working well however, I am not able to set the font to the accessory Inline widget. Here I attached an image of the custom font for lock…
Ravi Kotadiya
  • 57
  • 1
  • 6
2
votes
0 answers

Provisioning profile failed: Profile doesn't include the com.apple.developer.device-information.user-assigned-device-name entitlement

I request and got permission for capability for "User Assigned Device Name". Here my MyApp.entitlements content: When I install App on my Device via Xcode, I can access real Device name. But when I try to upload App, I get following…
pooopy
  • 311
  • 2
  • 9
2
votes
1 answer

How to change prompt color in Swift 5 iOS16

I am trying to change the color of the prompt in my navigation controller so that it is white not black for iOS16. The following code changes the title but not the prompt. My code is: import UIKit class ParentViewController: UIViewController { …
Adam
  • 2,070
  • 1
  • 14
  • 18
2
votes
1 answer

Xamarin.iOS for iOS16

I have implemented an iOS app based on Xamarin.iOS. Now I like to upgrade the app for iOS16. There is a dev blog from Microsoft which says that Xamarin supports already…
Sebastian S.
  • 1,173
  • 3
  • 13
  • 22
2
votes
1 answer

ImageRenderer on iOS - generates blurry image

I'm getting a low quality image when using ImageRenderer on iOS16 both on simulator and device. i.e. when saving the rendered image to the Photo Library or sending to Notes.. it's very pixelated. Everything I read would suggest simply setting .scale…
iOSDevil
  • 1,786
  • 3
  • 16
  • 29
2
votes
1 answer

SwiftUI TabView loses selection when container size changes given safe area ignored

I need to ignore the safe area of a TabView so that ScrollViews within the different pages will show their scrollable content outside the safe area. When the container's safe area changes, for example when the keyboard is shown, the view will be…
Will Alexander
  • 337
  • 2
  • 16