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
14
votes
6 answers
"The Developer of this app needs to update it to work with this version of iOS" pop up coming when launching Enterprise app for iOS 15
We have an enterprise account, and till iOS 14 there were no issues, but as soon as user update their phones to iOS 15, they are getting this alert.
The Developer of this app needs to update it to work with this version of iOS
Now, this issue is…

Surbhit Thanvi
- 269
- 1
- 2
- 7
13
votes
2 answers
How to measure energy usage in Xcode 13 / iOS15?
I'd like to confirm the battery usage of an app I am developing on iOS, specifically on Xcode 13 and iOS 15. (Note: This app previously showed no issues with battery usage on previous versions of iOS.)
Previously, it seems that there were two ways…

Derek Lee
- 3,452
- 3
- 30
- 39
13
votes
3 answers
iOS15 - SwiftUI WheelPicker scrollable outside frame and clipped area destructing other interfaces
I have two WheelPickers contained inside a HStack for 'hour' and 'min'.
Each Picker is set within a frame(width: 50, height: 30) and additionally clipped.
In iOS14, it behaved as expected and I could scrolled the 'hour' picker to change the hour and…

user14341201
- 212
- 1
- 9
12
votes
3 answers
Assert UITableView internal inconsistency prefetchedCells and indexPathsForPrefetchedCells are out of sync
Using UITableView with a custom cell. This was working fine till using iOS SDK 14. When start using iOS sdk 15, UITableView gives error upon scrolling.
Error is "Assert UITableView internal inconsistency prefetchedCells and…

kapill
- 189
- 9
12
votes
2 answers
How to add Picture in Picture (PIP) for WebRTC Video Calls in iOS Swift
We have used the following steps of integrating PIP (Picture in Picture) for WebRTC Video Call:
We are enabling mode of Audio, Airplay, and Picture in Picture capability in our project.
We have added an Entitlement file with Accessing the Camera…

Rajan Patel
- 191
- 1
- 13
12
votes
6 answers
iOS 15 UICollectionView issue for UICollectionViewRecursion
The application is working fine till Xcode 12 and iOS 14 but as soon as I upgraded to Xcode 13 / iOS 15 my application stoped working with below error log
2021-11-26 12:49:38.844428+0530 Mitaja[6170:102791] [UICollectionViewRecursion] cv ==…

The iOSDev
- 5,237
- 7
- 41
- 78
12
votes
3 answers
Weird Shortcuts problem on iOS 15 and WatchOS 8
I have an app which allow users to create shortcuts for it. It worked well on my iPhone and my Apple Watch until I upgrading my devices to iOS 15 and WatchOS 8.0
It keep asking me "Allow *** to share data with (null)" every time even after I said…

echo
- 1,244
- 1
- 16
- 40
12
votes
5 answers
Safari iOS 15 video issue
Since I downloaded iOS 15, the video on my page no longer works (in Safari). I used the following code to embed the video.
11
votes
1 answer
iOS15 How can I test the App Icon in Xcode 13?
In the session Get ready to optimize your App Store product page show:
And remember, to test a variation of your app icon, you'll need to include the icon assets in the binary of your app version that is currently live.
How should I create…

iHTCboy
- 2,715
- 21
- 20
11
votes
3 answers
iOS 15 Communication Notification picture not shown
I've been trying to update my (local & push) notifications to Communication notifications.
When a user receives a communication event from one of their friend, I want the displayed notification to include the friend's profile picture. Just like the…

Antoine Baché
- 133
- 2
- 6
11
votes
1 answer
SwiftUI Text iOS15: Email or URL inside Text view render using accent color
When running the following code in iOS15, the color of a URL or email address within the contents uses the accent color instead of the foreground color. How can I override that?
Text("Send a message to john@email.com to request support")
…

Ecil
- 1,009
- 1
- 13
- 28
10
votes
4 answers
Self sizing collection view enters a recursive loop in iOS 15
I have a self sizing collection view and when I call super.layoutSubviews my app crashes since the collection view enters a recursive update loop. This was working fine in iOS 14 and below. But observed it in iOS 15 onwards.
class…

Deepa Bhat
- 174
- 1
- 10
10
votes
1 answer
In iOS 15, Soft hyphen is not working properly when using unicode character in UILabel
In iOS 15 soft hyphens (\u{00AD}) are not considered when setting text on UILabel. for example: The following code does render the text with the soft hyphen correctly in iOS 13 & 14, but not in iOS 15.
import UIKit
class ViewController:…

Renato Stauffer
- 738
- 2
- 14
- 30
10
votes
2 answers
UIDatePicker rendering is getting right aligned in Xcode 13 (iOS 15)
I compiled my app with Xcode 13 and iOS 15, and I noticed the UIDatePicker is getting right aligned.
You can see that my storyboard is properly setup with constraints:
This UI element was working fine, even if I download the App Store version of…

KBog
- 3,800
- 1
- 25
- 31
10
votes
5 answers
iOS 15: How to display ATT dialog when the app starts in SwiftUI
In iOS 14, It could display ATT (App Tracking Transparency) dialog when app starts in SwiftUI as follows.
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
…

donchan
- 197
- 1
- 8