Questions tagged [ios15]

Use for questions specific to Apple's iOS 15 mobile operating system, released in 2021. General iOS questions should use the [ios] tag.

573 questions
6
votes
1 answer

perform(_:inZoneWith:completionHandler:) deprecated? or not? iOS 15

In Xcode 13 beta for iOS 15, I am receiving a message that perform(_:inZoneWith:completionHandler:) (CloudKit) is deprecated in iOS 15 and renamed to fetchRecords(matching:inZoneWith:desiredKeys:resultsLimit:completionHandler:) However... The Apple…
JerseyDevel
  • 1,334
  • 1
  • 15
  • 34
5
votes
4 answers

How to change hyper link text color in SwiftUI

I am trying to custom change the default font color of hyperlink in a given markdown string with SwiftUI. Something equivalent to txtString.linkTextAttributes = [ .foregroundColor: UIColor.red ] of UIKit. Here's my code: import SwiftUI struct…
Vijay Lama
  • 96
  • 1
  • 6
5
votes
0 answers

iOS 15 - UICollectionView disappear while scrolling only in iOS 15

this is the second time I posted here about this issue and no one could help me my project was good in iOS 14 and previous versions when I debug my app on simulator or real device that have iOS 15 the collectionView disappear while scrolling or…
5
votes
0 answers

UIDocumentInteractionController presentPreviewAnimated navigation bar style is incorrect for ios15

I use the UIDocumentInteractionController to present an image full screen and since upgrading to xcode 13, iOS 15 devices have white and translucent navigation bars when doing [_documentInteractionController presentPreviewAnimated:YES];. All other…
Matt Jenje
  • 175
  • 1
  • 8
5
votes
0 answers

nw_resolver_start_query_timer_block_invoke [C12] Query fired: did not receive all answers in time for

why i receive thi error message? "nw_resolver_start_query_timer_block_invoke [C12] Query fired: did not receive all answers in time for "
5
votes
1 answer

Audio files won't play with AirPods Pro on iOS 15

I am using this code to play audio. My code works fine on iOS 14 with all headphones model, but when customers have updated their devices to iOS 15 and are using AirPods Pro, no audio files play. On other AirPods models and when playing audio files…
user13667410
5
votes
0 answers

UICloudSharingController does not show "Add People" with existing share in iOS 15.x but does in iOS 14.x

Running iOS 14.x or lower the UICloudSharingController shows Add People as the last line of the 1st section of the People sheet. As of iOS 15.x including the new 15.2 beta the row containing Add People is not present. Anyone know of a work around…
Rob
  • 757
  • 1
  • 10
  • 26
5
votes
3 answers

iOS15 UTType deprecations for URL-extension

Using Swift5.5, iOS15.0.1, As of iOS15, I realised that there are quite some deprecations going on in relation to my existing URL-extension. I didn't find any good documentation on how to re-write my existing extension. Here is my current…
iKK
  • 6,394
  • 10
  • 58
  • 131
5
votes
2 answers

How to disable magnifying glass in iPadOS15 safari

I want to disable text magnifying glass that appears when we long press on any html element. It has started to appear again in IOS15. I tried the following methods, but they did not work on iOS15. Disable magnifying glass in iOS html app Do you know…
5
votes
2 answers

SwiftUI Keyboard Toolbar Scope

Say we have the following view of two text fields: struct ContentView: View { @State private var first = "" @State private var second = "" var body: some View { VStack { TextField("First", text: $first) …
Marcus Rossel
  • 3,196
  • 1
  • 26
  • 41
5
votes
1 answer

APNS Content Available Push not working in iOS 15

APNS Content available push not received in iOS 15 device when app builds with Xcode 13.0,iOS 15 SDK. Push payload data with content available:1 not working {"aps":{"content-available":1},"update":"2|1"} but normal notification message push…
5
votes
1 answer

Mobile Safari-15 bottom navigation area issue

Issue If you open a modal (position absolute or fixed) when bottom navigation is collapsed, bottom navigation area remains with empty area. I think the area is browser area, so there is no way to get rid of the area by css or javascript. Is there…
Song
  • 87
  • 1
  • 6
5
votes
0 answers

Setting of different text colors for different UITabBarItem's in iOS 15

After update to iOS 15, I implemented UITabBar configuration this way: let backgroundColor = UIColor.grey let selectedItemTextColor = UIColor.blue let unselectedItemTextColor = UIColor.black if #available(iOS 15, *) { …
5
votes
3 answers

Navigation bar and tab bar turned black on iOS15 Xcode 13

Today I just updated my Xcode to version 13 and found that all the navigation bars and the tab bars of my project turned black, I didn't change any settings, my project was working fine on Xcode 12, and I have toggled it to light mode, I couldn't…
Zim
  • 674
  • 7
  • 15
5
votes
4 answers

UITabBarAppearance does not work on iOS15 iPad (title color)

I created a simple demo and only created a UITabBarController's subclass and set in storyboard. I want to set the TabBarButtonItem's title to an orange color when selected and black color when normal. The following code works fine on any iOS version…
ImWH
  • 820
  • 1
  • 7
  • 20