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
10
votes
4 answers

Xcode 13, iOS 15 Issues with signing and expired account, any connection?

So I am trying to run apps on my phone. I do have Xcode 13 and running iOS 15. Not sure how relevant that is. So when I run the app I get the following errors: Xcode: The operation couldn’t be completed. Unable to launch app because it has an…
Micheal
  • 309
  • 4
  • 16
9
votes
1 answer

apple-app-site-association app order is not respected

I have a few apps associated with the same domain. They are listed in the apple-app-site-association file in a specific order to make sure each universal link is opened by the most suitable app installed on the device. This works fine on iOS 14 and…
Vladimir Grigorov
  • 10,903
  • 8
  • 60
  • 70
9
votes
3 answers

Safari iOS 15 mobile: fixed element jumps when bottom bar disappears

Say we have a fixed sidebar, this: .sidebar { position: fixed; top: 0; left: 0; min-width: 17em; height: 100%; } When the Safari bottom bar is visible it's ok, but when scrolling down it disappears and the sidebar remains for a while…
Fred K
  • 13,249
  • 14
  • 78
  • 103
9
votes
1 answer

Navigation + Tabview + Sheet broken in iOS 15

It looks like Navigation + TabView + Sheet is broken in iOS 15. When I do this: ContentView -> DetailView -> Bottom Sheet When the bottom sheet comes up, the Detail view is automatically popped off the…
9
votes
2 answers

How to change navigation bar & back button colour iOS 15

I have UIkit project and I want to change navigation bar colour and back button colour.It is working fine on previous versions. but not in iOS 15. I put following code on AppDelegate,It is change the Title colour but not back button item colour.How…
Dilan
  • 2,610
  • 7
  • 23
  • 33
9
votes
3 answers

Navigation bar is transparent when scrolling starts in iOS15 only

I've been searching different solutions and the one that I keep seeing repeatedly is to set the scroll edge appearance equal to the standard appearance. I have also looked at this solution. Neither solution is working for me. I am also not seeing…
Kate M
  • 478
  • 4
  • 17
9
votes
2 answers

What's the API for querying Focus mode on iOS 15?

iOS 15 introduced Focus mode. Apple mentioned that communication apps can query if the device is currently in Focus so we can tell the other person that they might not be notified of messages. However I couldn't find the API in apple docs. Does…
Joe Tam
  • 564
  • 5
  • 16
9
votes
2 answers

XCode 13 beta 2, App installation failed on iOS 15

App runs fine on iOS 14 device but on iOS 15 i'm not able to install It throws below error from the XCode 13 beta 2. Cleaned Dervied Data and tried it didnt work, Opted for Automatic / Manual sign in both didnt work System Information macOS Version…
Madhu Avinash
  • 933
  • 2
  • 8
  • 27
9
votes
4 answers

navigationbar setBackgroundImage not working on iOS15

- (void)viewDidLoad { [super viewDidLoad]; [self.navigationController.navigationBar setBackgroundImage:xxx] forBarMetrics:UIBarMetricsDefault]; [self.navigationController.navigationBar setBarTintColor:[UIColor redColor]]; } it works…
8
votes
1 answer

iOS 15 app not launching in killed state with location change

I have added the background modes for location in my app SS here But still, the app does not launch with the launch options key UIApplication.LaunchOptionsKey.location Here is my app delegate code, func application(_ application: UIApplication,…
nil
  • 113
  • 4
8
votes
1 answer

iOS15 Safari bottom navigation bar issue when showing modal

I faced an issue when I updated the iOS to version 15 on iPhone. And I found that Safari hide the navigation bar when I scroll down the page. It is ok, but the issue come when I open a modal. When I open modal with following well known style .modal…
wallah
  • 1,964
  • 5
  • 27
  • 48
8
votes
2 answers

heightForRowAtindexPath not called after tableView.beginUpdates in ios 15

Before iOS 15 after I made self.tableView.beginUpdates() self.tableView.endUpdates() method heightForRowAtindexPath was called and my cell height changed without reloading data in the cell. Now in iOS 15 this not works! How can I force reload…
Viktoria
  • 119
  • 6
8
votes
3 answers

Transparent TabBar when popping Child NavigationView iOS 15

I have a SwiftUI application with a TabBar. If I open a detail child view from a NavigationView, and then click on "Back", the TabBar would become transparent, showing the items in the Feed underneath the TabBar icons. FROM THE HOME FEED, OPEN A…
Artur Marchetto
  • 646
  • 1
  • 5
  • 17
8
votes
5 answers

Snapshot of SwiftUI view is partially cut off

I tried to create a UIImage from a SwiftUI view, a snapshot, with the code from HWS: How to convert a SwiftUI view to an image. I get the following result, which is obviously incorrect because the image is cut-off. Code: struct ContentView: View { …
George
  • 25,988
  • 10
  • 79
  • 133
8
votes
1 answer

NSPersistentCloudkitContainer Memory Leak -> Crash? (iOS 15 beta 4, 5, 6 & 7...)

This is a copy of a thread I've created on Apple's Forum here Background I have an established app in the App Store which has been using NSPersistentCloudKitContainer since iOS 13 without any issues. I've been running my app normally on an iOS…
Paul Martin
  • 699
  • 4
  • 13