Use for questions specific to Apple's iOS 15 mobile operating system, released in 2021. General iOS questions should use the [ios] tag.
Questions tagged [ios15]
573 questions
162
votes
19 answers
iOS 15 Navigation Bar Transparent
My iOS app uses the storyboard for the UI and uses a custom tint for the background color of the navigation bar.
I have tested my app on the Xcode 13 beta 5 and the navigation bar is "white" and the text on the navigation bar is not visible.
In the…

G. Steve
- 2,739
- 2
- 11
- 17
89
votes
9 answers
Extra padding above table view headers in iOS 15
How to change the extra padding above UITableView section headers that has started to appear in iOS 15?

Jakub Truhlář
- 20,070
- 9
- 74
- 84
82
votes
17 answers
iOS 15 UITabBarController's tabBar background color turns black
tabBar.barTintColor can't be changed in iOS 15 beta 4.
Background. We have an app in App Store and each year before the new iOS major version releases we download the iOS beta and test our app to fix the issues beforehand.
Our problem. This year…

Zhengqian Kuang
- 1,079
- 1
- 9
- 12
57
votes
15 answers
Flutter error: xcodebuild: WARNING: Using the first of multiple matching destinations
Flutter version is 2.2.3 and I cant't run de flutter code on my iOS emulator.
Launching lib/main.dart on iPhone 13 Pro in debug mode...
lib/main.dart:1
Xcode build done. 43.6s
Failed to build iOS app
Error…

leobidoous
- 571
- 1
- 4
- 3
57
votes
2 answers
Xcode doesn’t support iOS 15.0
I updated my iPhone to iOS 15.0 yesterday and I wanted to build in Xcode (version 12.5.1).
But in Xcode it is showing 'iPhone (unsupported OS version)' and when I try to build (command + R) then I get the error:
Xcode doesn’t support iPhone’s iOS…

Yongstephi
- 695
- 1
- 4
- 6
47
votes
6 answers
Command CompileSwiftSources failed with a nonzero exit code XCode 13
I am trying to run a project on the Xcode13, after running a pod cache clean --all, deleting the derived data, and running a pod update.
When I clean the project and build it
the following error appears:
CompileSwiftSources normal x86_64…

AISAC
- 821
- 1
- 9
- 14
45
votes
1 answer
How to use UIWindowScene.windows on iOS 15?
Currently, with iOS 14.6, I can call a function in my app that displays a share sheet using the following code:
func share(link: URL) {
let activityView = UIActivityViewController(activityItems: [link], applicationActivities: nil)
…

calebm
- 485
- 1
- 4
- 8
43
votes
6 answers
How to replace deprecated .animation() in SwiftUI?
The .animation() modifier has been deprecated in iOS 15, but I'm not sure I understand how Xcode's suggested equivalent, animation(_:value:), works.
.animation(.easeInOut(duration: 2)) // ⚠️'animation' was deprecated in iOS 15.0: Use withAnimation…

Sam
- 2,152
- 6
- 31
- 44
32
votes
0 answers
SwiftUI on iOS 15, strange warning of [UICollectionViewRecursion] when using contextMenu
[UICollectionViewRecursion] cv == 0x10481a000 Disabling recursion trigger logging

iaomw
- 720
- 6
- 21
32
votes
10 answers
iOS 15 Untrusted Developer issue
I have updated recently to a new iOS 15 and after I built and run my application in Xcode, while have been logged in with a same developer account as before iOS 15 installation, I get this message:
The operation couldn’t be completed. Unable to…

Whirlwind
- 14,286
- 11
- 68
- 157
28
votes
2 answers
iOS 15 Safari detect floating address bar when keyboard is visible
In Safari iOS15, by default, the address bar is pinned to the bottom of the viewport. As iOS 15 Safari floating address bar explains, you can use padding-bottom: env(safe-area-inset-bottom) to ensure content displays above it.
However, if the…

Penar
- 591
- 5
- 10
28
votes
4 answers
Observing "App needs to be updated" message when launching app on iOS 15
We are trying to test application on iOS 15 and found that we are getting this message App needs to be updated.
Can anyone please let me know the reason behind this message? Existing users will have to delete the app and install again to get rid of…

Ankush Dhawan
- 319
- 1
- 3
- 5
25
votes
6 answers
App Tracking Transparency Dialog does not appear on iOS
Apple reviewer has just rejected my app since ATT request doesn't appear: "We are unable to locate the App Tracking Transparency permission request when reviewed on iOS 15.0.1."
My code is as shown below:
if #available(iOS 14, *) {
…

Ömer Karaca
- 880
- 1
- 8
- 13
24
votes
5 answers
Create a share sheet in iOS 15 with swiftUI
I am trying to create a share sheet to share a Text, it was working fine in iOS 14 but in iOS 15 it tells me that
'windows' was deprecated in iOS 15.0: Use UIWindowScene.windows on a
relevant window scene instead.
how can I make it work on iOS 15…

Jesus M
- 241
- 1
- 2
- 4
23
votes
1 answer
SwiftUI - Mutable @FocusState for child view?
I have a parent view with a @FocusState variable that I want to pass into a child view that contains a TextField. I want to be able to change the FocusState from within the child view, but I get the errors Cannot assign to property: 'self' is…

Kyle Horkley
- 911
- 1
- 9
- 23