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
3
votes
0 answers

iOS15 nextResponder NOT being set to nil cause App Crash

Our App runs fine in iOS14 but crashing in iOS15 The next responder for the contentViewController in ModalVC is the ModalVC. The deallocation of the modal happens before the contentVC in both iOS14 and 15, meaning that the nextResponder of the…
OLIVER.KOO
  • 5,654
  • 3
  • 30
  • 62
3
votes
3 answers

Xamarin iOS: Deploying app to device or simulator with iOS 15

I would like to verify whether my Xamarin iOS app is ready for iOS 15 before it's official release. I've installed the public beta of iOS 15 on my iPad and there seems to be an issue, so I would like to debug it. Unfortunately I'm neither able to…
tobi_b
  • 1,218
  • 1
  • 12
  • 21
3
votes
1 answer

Using previewCGImageRepresentation in both Xcode 13 and Xcode 12?

I’ve run into an issue where Xcode 13b2 (iOS 15 SDK) changed the Swift return type of AVCapturePhoto.previewCGImageRepresentation(). In Xcode 12.5.1 (iOS 14 SDK), this method returns Unmanged. In 13b2 - 13b4, it returns CGImage?. I need my…
Rick
  • 3,298
  • 3
  • 29
  • 47
3
votes
1 answer

iOS 15: Websocket inside WKWebView issue

In our app we are reliant on a web socket inside a WKWebview. In previous releases this web socket worked well. In the iOS 15 betas though this web socket behaves differently: it connects to our server successfully but once the client tries to send…
Jannis
  • 1,084
  • 9
  • 8
3
votes
1 answer

Enable Focus mode programmatically in iOS 15

iOS 15 introduces the new Focus Mode, which reduces distraction by filtering notifications and apps. I understand that a lot of these types of settings on iOS aren't able to be programmatically changed; but, for sake of clarity, can Focus Mode be…
Ben Myers
  • 1,173
  • 1
  • 8
  • 25
3
votes
1 answer

Use GroupActivities with Objective-C Classes?

So the new SharePlay on iOS 15 works by utilizing GroupActivities which are only available in Swift. My existing app has a fairly extensive bit of code for viewing videos, but that code is all Objective-C. If I want to get SharePlay to work with…
user717452
  • 33
  • 14
  • 73
  • 149
3
votes
1 answer

iOS 15 Safari CSS

I have the iOS 15 beta installed and looking at my website on the new Safari update, I see that the top header is showing a grey header instead of being transparent to flow under the notch etc. The whole site is plain white and black text, so I'd…
2
votes
3 answers

Swift: Why does "Pop Up Button" throw NSInternalInconsistencyException?

I created a "Pop Up Button" following the WWDC video here: "Build interfaces with style" https://developer.apple.com/videos/play/wwdc2021/10196/?time=602 After adding the pop up button like shown in the video, I created an IBAction function like…
RainCast
  • 4,134
  • 7
  • 33
  • 47
2
votes
1 answer

How to check programmatically whether the Scheduled Summary notifications is enabled by a user for an iOS app?

In iOS 15, Apple has introduced Scheduled Summary notifications. We can schedule select app notifications to be delivered at a specific time of the day alongside others apps as a bundle. Is there a way to find whether the user has enabled this…
Pravalika
  • 145
  • 1
  • 1
  • 15
2
votes
2 answers

How can I build an app with XCode 13.4 for iOS 16 Devices?

I'm working for a company which has an application in the AppStore. We need to test iOS 16 before release. I can not build the app iOS 16 devices with XCode 13.4. If we got build with firebase and run the app in iOS 16 but the app stuck into splash…
Swift Boy
  • 45
  • 1
  • 1
  • 3
2
votes
1 answer

'titleEdgeInsets' was deprecated in iOS 15.0

I am getting warning: 'titleEdgeInsets' was deprecated in iOS 15.0: This property is ignored when using UIButtonConfiguration I want to give padding to button. I have tried following code for giving padding. btnPassword.configuration?.contentInsets…
Faaiz Daag
  • 155
  • 11
2
votes
2 answers

Change iOS SwiftUI Keyboard Extension Height

I have seen potential duplicates of this question but none of them seem to have a minimum reproducible example and have small snippets of code that leave out important context. Additionally, since I'm using SwiftUI I'm not sure that many of the…
Enrico Borba
  • 1,877
  • 2
  • 14
  • 26
2
votes
1 answer

TabView Interfering with Startup Screen Header Height

I have a tab view within a navigation view. At startup, ContentView() sets up the tab views followed by StartUpView(). When StartUpView() is called by itself, it contains the blue reserved block at the top of the view plus a small block below that…
Galen Smith
  • 299
  • 2
  • 14
2
votes
0 answers

Unable to generate .ipa through xcodebuild with universal distribution for enterprise account

I'm trying to generate Enterprise distribution build from jenkins job. I was able to build and generate the .ipa for Adhoc Distribution(Developer Account), but when i create a new job and set up the configuration for enterprise build(Enterprise…
2
votes
3 answers

How to switch the statusBarStyle with the new syntax to remove deprecated warnings?

how am I supposed to change this piece of code? The current solutions for this problem either cover older iOS versions or are unanswered. This is the line: UIApplication.shared.statusBarStyle = .lightContent And I get those…
Lucas Goldner
  • 617
  • 9
  • 29