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
3
votes
3 answers
carplay setRootTemplate crash (Allowed classes: (null))
I'm middle of transition from old carplay to new ios15 carplay.
I asked carplay entitlement to apple and have it now.
so I put some sample codes and run.
the code is
func templateApplicationScene(_ templateApplicationScene:…

WoffOVkee
- 435
- 3
- 16
3
votes
2 answers
Navigation bar colour change issue in Xamarin.forms in iOS platform after iOS 15 update
In the application I developed, the navigation bar at the bottom of the screen, changes its color between black and white depending on the theme selected by the user. It worked perfectly all this time until I updated the software to iOS 15. Now,…

arvindhK
- 31
- 5
3
votes
4 answers
Swiftui - Days' name is missing if you show and hide DatePicker
I have a GraphicalDatePickerStyle DatePicker that is hidden by default. When you click a button, it is shown.
It used to work on iOS14. But on iOS15, days' name is missing.
struct ContentView: View {
@State var isDatePickerVisible: Bool = false
…

mahan
- 12,366
- 5
- 48
- 83
3
votes
0 answers
Unable to remove Navigation Bar when TabView is used inside the Navigation View - SwiftUI - iOS 15
SwiftUI View Hierarchy
Navigation View --> VStack --> Custom SearchView --> TabView
In the view, with the hierarchy mentioned above, I'm unable to remove navigation bar. It's visibility is successfully changed with the code mentioned shared…

Subhan Ali
- 1,370
- 13
- 17
3
votes
1 answer
iOS 15 UITabBarItem customization
I have UITabBarConroller subclass and custom items. Customization looks like this:
private func updateTabBar() {
guard let items = tabBar.items,
tabViewControllers.count == items.count else {
return
}
for (item, vc) in…

Valentin Shamardin
- 3,569
- 4
- 34
- 51
3
votes
1 answer
How to disable long press selection on WKWebView in iOS15?
With the iOS 15 update, in my web application is appear a new functionality that I want to disable. This feature is based on a long press and dragging is possible to select some text.
Feature example gif
i've tried to use:
WKWebViewConfiguration*…

ALD
- 33
- 1
- 6
3
votes
1 answer
UIDatePicker change font color ios15
I have a uiDatePicker and I had changed the font color previously with myDatePicker.tintColor = UIColor.red for example. Now that I have updated to Xcode 13 and ios15 when I run this on a device with ios15 the text color defaults to black and only…

ez4nick
- 9,756
- 12
- 37
- 69
3
votes
1 answer
App builded by Xcode version 13 crashed on ios 12
My app is working fine on iOS 15 and 14, maybe 13 too. But when I run on older device using iOS 12, its crash on start, even before didFinishLaunchingWithOptions is triggered. It was working fine the last time I build using Xcode 12.
Terminating app…

Mat Yus
- 289
- 1
- 2
- 14
3
votes
1 answer
iOS 15 SDK - `memcpy()` not exported
I've been using memcpy in some Dart/Flutter code (through FFI), but with the latest Xcode + iOS 15 simulator, it's not available anymore (Failed to lookup symbol (dlsym(RTLD_DEFAULT, memcpy): symbol not found). Anyone an idea why they've hidden the…

vaind
- 1,642
- 10
- 19
3
votes
1 answer
XCode 13 Build Error - Could not find or use auto-linked library 'swift_Concurrency' - React Native 0.64-65
Preface
This my first time answering my own question so if there's anything wrong with my explanation just leave a comment and make any necessary correction
The following is just a updated answer for those whose XCode was automatically updated to…

Orthodox_Athena
- 197
- 2
- 11
3
votes
2 answers
@Environment(\.dismiss) bug causes popped view to load a new version of itself in iOS 15
Navigate to INCR: 3 and tap either the navigation bar back button or the dismiss button and you'll notice that same view is called again but this time it's a new version because the onAppear firstLoad = true and rand is a different value.
If you…

K E N N E R
- 81
- 7
3
votes
1 answer
iOS 15. Notification icon is wrong
In my app in the Assets I have an icon which is displayed on the notification banner when a push notification is arriving. It is marked as iPhone Notification iOS 7-15 20 pt. So the problem is simple: on iOS 15 this icon is not shown. The spotlight…

Andrey Chernukha
- 21,488
- 17
- 97
- 161
3
votes
0 answers
onOpenURL not called on iOS 15 simulator (SwiftUI)
I have a widget that opens my app via a custom url scheme (myapp:some-deep-link). In my app I have a handler setup like so:
var body: some Scene {
WindowGroup {
ContentView()
.onOpenURL(perform: { url in
…

Nicolas
- 755
- 9
- 22
3
votes
3 answers
iOS 15 does not awake app while entering BLE beacon region
My iOS app has BLE beacons detection in it. Which means If user has bluetooth and location on and if user enters the range of a beacon, system automatically awakes the app If it was not running (killed state).
This was working fine on iOS 14 and…

Jason Roy
- 43
- 6
3
votes
0 answers
iOS 15 SwiftUI keyboard toolbar random behaviour
I am trying to add a keyboard toolbar for only some of my TextField's in SwiftUI.
I have a view defined like this:
struct Test: View {
@State private var name: String = ""
@State private var address: String = ""
@State private var…

Darren
- 10,182
- 20
- 95
- 162