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
0
votes
3 answers
EmptyView is not showing in iOS 15, Xcode 13
I have serious problem. My Xcode version is 13, iOS version is 15.
import SwiftUI
struct ContentView: View {
@State var isGo: Bool = false
var body: some View {
ZStack {
Button(action: {
self.isGo = true
}, label: {
…

윤시완
- 21
0
votes
0 answers
ionic: Map navigation not working in iOS 15
In our ionic app, we are using @ionic-native/launch-navigator plugin for navigate user to destination address in native map app.
Following navigation code is working fine for previous iOS versions, but not working for iOS 15.
Related code:
import {…

archana parmar
- 11
- 1
0
votes
1 answer
Set new sectionHeaderTopPadding property for different sections in iOS 15
Is it possible to adjust the new section header top padding property for table views per section? You can adjust it for all sections like this, but I would like to have some sections be 0 and other sections the default padding in a table…

Berry Blue
- 15,330
- 18
- 62
- 113
0
votes
3 answers
Appium (and desktop) unable to launch wda session since xCode13 and iOS15
Since my xCode got (automatically...) updated to 13 and all my simulators moved from iOS 14.5 to 15. with the same setup / commands I'm unable to launch the WDA from both the desktop app, and the node ( selenium server grid/node setup)
The issue…

Jano
- 401
- 1
- 5
- 14
0
votes
1 answer
Xamarin iOS: BarTintColor not working in iOS 15
I came across a similar issue in this post.
I tried to convert iOS native code into Xamarin.iOS C#.
iOS Native Code:
let appearance = UINavigationBarAppearance()
appearance.configureWithOpaqueBackground()
appearance.backgroundColor =

Wei Loon Wong
- 450
- 1
- 7
- 23
0
votes
1 answer
XCode 13 SortOrder is ambiguous
Check out this error in the most recently updated Xcode (13):
Did Apple screw something up? How do I fix this? I can see when I start typing SortOrder it shows a Protocol and an Enum.

Adam Jenkins
- 51,445
- 11
- 72
- 100
0
votes
1 answer
SwiftUI on iOS 15, custom buttonStyle doesn't work anymore, it works fine on iOS 14, how to fix?
As the title described. I was using a custom SwiftUI buttonStyle on iOS 14. It works fine, but now it's not works on iOS 15. There is no error no warning, I don't know how to deal it. Anybody know to fix it?
struct InnerShadowButtonStyle:…

iaomw
- 720
- 6
- 21
0
votes
1 answer
Using a group icon with iOS 15 communication notifications
I have followed the instructions in this great Gist to get a INSendMessageIntent working to display the user's profile image on iOS 15. And it works great.
However, I am unable to figure out how to get the image for a group message to be…

Wil Gieseler
- 1,893
- 1
- 17
- 18
0
votes
0 answers
Exception 'NSJSONReadingAssumeTopLevelDictionary and NSJSONReadingAllowFragments cannot be set at the same time'
After upgrading an Xcode to 13.0 version and recompiling my app with it on a device I started getting this exception:
libc++abi: terminating with uncaught exception of type NSException
dyld4 config: DYLD_LIBRARY_PATH=/usr/lib/system/introspection…

Alex Sh.
- 579
- 5
- 17
0
votes
1 answer
iPadOS 15 Safari on.('touchend') issues
In a PWA coded for Safari in iPadOS 14 I'm using a simple listener for showing a popup when clicking on a button. While this was working well including iPadOS 14.6, the same code isn't in iPadOS 15.0.
The listener "touchend" caused the popup showing…

NIck
- 71
- 1
- 9
0
votes
1 answer
Change platform brigtness is triggered when 'Home' is pressed in iOS 15 Simulator
I'm having an issue after my Simulator was updated to iOS 15 in my upcoming Flutter app. When I press the 'Home' button at the top it causes my app to fire the didChangePlatformBrightness() function twice.
Seriously thinking on remove this check…

Pedro Conrad Junior
- 31
- 7
0
votes
1 answer
iOS 15 NavigationLink pop automatically if destination is created dynamically
This is a problem on iOS 15 RC only. It works all good on iOS 14.
The problem is if my destination on NavigationLink is created dynamically, it pop automatically if i try push a view via NavigationLink. Here is a bit code snippet
NavigationLink(
…

LiangWang
- 8,038
- 8
- 41
- 54
0
votes
1 answer
Building with Xcode 13 (iOS 15 SDK) is not longer backward compatible with iOS 14.x targets
Just found out that building an app with the new iOS 15 SDK (Xcode 13 RC) is no longer backward compatible with iOS 14.x targets when using CloudKit.
Steps to reproduce:
New project in Xcode 13 RC (check the Core Data + CloudKit options)
Set the…

Andrei Matei
- 1,049
- 2
- 10
- 23
0
votes
3 answers
Do I have to rebuild my app for every iOS new version release to make it available at the AppStore?
I think this is not required, at my personal experience only new iOS specific features in my application will require a new release, but a personal client is asking me to confirm this.
With every new XCode release, do I have to rebuild and publish…

Wilmer Barrios Torres
- 109
- 6
0
votes
0 answers
CoreData + CloudKit compilation problem in iOS 15
I'm trying to validate by app with the latest Xcode 13 RC.
I found out that what was building well on Xcode 12, is not longer compiling on 13 RC.
For example, I started getting: Cannot find type 'CKRecord' in scope in a class that already has the…

Andrei Matei
- 1,049
- 2
- 10
- 23