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
4
votes
1 answer

How can I logout in my SFSafariViewController

I made app which login in SFSafariViewController. It works well when login. but after I logout if I try to login it again, I'm already logged in. This is because my automatic login information is stored in SFSafariViewController. I tried to delete…
PArk
  • 51
  • 1
4
votes
0 answers

Access Documents directory contents in files app in ios 15

In my app, I want to expose the documents directory of the app in files app. I have set UIFileSharingEnabled and LSSupportsOpeningDocumentsInPlace to YES in info.plist. This works perfectly while using iOS 14 simulator. But the same does not work on…
Mayu
  • 41
  • 1
4
votes
2 answers

UIProgressView become transparent during setProgress with animated = true

In iOS15 UIProgressView changed behavior. When I use self.progress.setProgress(1.0, animated: true), it starts from transparent style. How to return to "alpha = 1" style. progress = 0 progress = 20% progress = 70% progress = 90% P.S.:…
4
votes
1 answer

Xcode13 iOS15 tableView cellForRowAtIndexPath: return a different cell

In Xcode13 iOS15, every time I call [tableView reloadData]; cellForRowAtIndexPath always return a different cell, it makes my app very strange... So I wrote a Demo to verify this. - (void)viewDidLoad { [super viewDidLoad]; // Do any…
黄嘉琦
  • 41
  • 2
4
votes
1 answer

SwiftUI: Malfunctioning NavigationBar and TabBar in iOS 15

In SwiftUI, I would like to use a background color for my view while also setting navigationViewStyle to .stack, to force a single-column stack navigation Plus-sized devices. var body: some View { TabView { NavigationView { …
Pim
  • 2,128
  • 18
  • 30
4
votes
0 answers

SwiftUI NavigationView list not dismissing itself when NavigationLink is clicked on iPads running iOS 15 in portrait orientation

Since iOS 15, clicking a NavigationLink in a NavigationView sometimes does not dismiss its nested list / sidebar on iPads in portrait orientation. The first click will dismiss the list, then it gets stuck. You can drag / scroll the list up and down…
SVP
  • 2,773
  • 3
  • 11
  • 14
4
votes
1 answer

LSApplicationQueriesSchemes Xcode 13 or iOS15 BUG?

I use "LSApplicationQueriesSchemes" in the project Info.plist, which contains 219 url schemes. I use the urlscheme contained in this file to determine if an app is installed on our user's phone, which worked fine before iOS15, but recently I had a…
StefanQu
  • 41
  • 1
  • 2
4
votes
2 answers

Xamarin App Tracking Transparency Dialog does not appear since iOS 15

Since I started building my App for iOS 15 in Xamarin the Dialog with the Tracking Usage Description does not disappear anymore and it does not pass Apple's review. I tried with my iPhone 12 mini and also with various simulators. Simulators for iOS…
Ginbob89
  • 41
  • 1
4
votes
2 answers

SwiftUI - IOS 15 - Text .mimimumScaleFactor - always being applied

Can't find any documentation of this issue. One of my apps has a text view with a .minimumScaleFactor(0.5). This works perfectly in iOS 14.0.* - when the text would be wider than the view its scales nicely to fit - IE filling the full width of the…
swift--help
  • 637
  • 5
  • 15
4
votes
1 answer

enableBackgroundDelivery Health-kit iOS15 not working correctly

I am working on the health kit. Before iOS15 below code is working correctly I am getting vitals on an hourly basis but in this latest version, I am not getting any vitals event per hour. I am facing an issue in iOS15 not getting any event in an…
Mayank Patel
  • 3,868
  • 10
  • 36
  • 59
4
votes
0 answers

iOS 15, How to set alternate icon (User-Selectable App Icons)

After upgrade on iOS 15 the app has lost the ability to change alternate icon (User-Selectable App Icons). I didn't find any changes in documentation. How does one set an alternate app icon on iOS 15?
reacct
  • 49
  • 3
4
votes
1 answer

Document browser app in iOS 15 keeps creating iCloud drive folder

I have had a document browser app up since iOS 11 (using UIKit/UIDocumentBrowserViewController). The app (let's call it "MyApp") used to create a "MyApp" folder in iCloud Drive (and/or on the device, depending on the choice made in Settings), where…
4
votes
1 answer

Closing Rate and Review on iPadOS 15 freezes interface

After updating iPad to iPadOS 15 when receiving Rate and Review Dialog and pressing Cancel on it, app freezes. This is reproducing on real iPads and iPad simulators. This is even reproducible with a build made with Xcode 12 and installed on iPadOS…
Maxvale
  • 145
  • 6
4
votes
1 answer

iOS 15 - Xcode 13-RC warning: -[NSKeyedUnarchiver validateAllowedClass:forKey:]

I installed the new Xcode 13-RC and in my project I got the next warning in the console: 2021-09-15 17:30:06.305218+0100 MYProject[511:30187] [general] *** -[NSKeyedUnarchiver validateAllowedClass:forKey:] allowed unarchiving safe plist type…
Eduardo Santi
  • 425
  • 1
  • 4
  • 13
4
votes
2 answers

SwiftUI - Incorrect padding when using GroupedListStyle() for iOS 15

I have the following structure, more or less: ZStack { NavigationView { List { Section(header: Text("1") .padding(.top, 20) footer: Text("2") …
Fengson
  • 4,751
  • 8
  • 37
  • 62