Search results for

iPadOS 17.7.7

3,648 results found

Post

Replies

Boosts

Views

Activity

Is it possible to apply a fix and compile, release using the older 17.2 and XCode 15 codesets?
Our mobile application was originally designed and built approximately 2015. It has been incrementally iOS upgrade up to SDK version 17.2 compiled using XCode 15. Issue: Due to a recently degraded Customer Journey, we are blocked from making further changes to the application via the App store due to the fixed Apple protocol message (since April 2025): “iOS requirements have changed. • Minimum SDK Requirement: The minimum SDK version for iOS and iPadOS apps submitted to the App Store after the specified date is iOS 18. • Xcode Requirement: Xcode 16 or later is required to build apps with the iOS 18 SDK. • Existing Apps: If your app was last released using an older SDK, you will not be affected by this update until you submit a new release.” Thus, based on an ask to remediate the poor CJ without fully rewriting the app to be iOS 18 / Xcode 16: Is it possible to apply a fix and compile, release using the older 17.2 and XCode 15 codesets? We are currently blocked from doing so. Any steer on how to apply
1
0
95
Jul ’25
Crash inside of Vision predictWithCVPixelBuffer - Crashed: com.apple.VN.detectorSyncTasksQueue.VNCoreMLTransformer
Hello, We have been encountering a persistent crash in our application, which is deployed exclusively on iPad devices. The crash occurs in the following code block: let requestHandler = ImageRequestHandler(paddedImage) var request = CoreMLRequest(model: model) request.cropAndScaleAction = .scaleToFit let results = try await requestHandler.perform(request) The client using this code is wrapped inside an actor, following Swift concurrency principles. The issue has been consistently reproduced across multiple iPadOS versions, including: iPad OS - 18.4.0 iPad OS - 18.4.1 iPad OS - 18.5.0 This is the crash log - Crashed: com.apple.VN.detectorSyncTasksQueue.VNCoreMLTransformer 0 libobjc.A.dylib 0x7b98 objc_retain + 16 1 libobjc.A.dylib 0x7b98 objc_retain_x0 + 16 2 libobjc.A.dylib 0xbf18 objc_getProperty + 100 3 Vision 0x326300 -[VNCoreMLModel predictWithCVPixelBuffer:options:error:] + 148 4 Vision 0x3273b0 -[VNCoreMLTransformer processRegionOfInterest:croppedPixelBuffer:options:qosClass:warningRecorder:err
3
0
406
Jul ’25
iPad Pro smart keyboard springboard crash
I have the iPadOS 13 beta 2 installed on my iPad Pro 11 and I have started getting springboard crashes when I have the smart keyboard attached. I swipe up to unlock and the spinner starts and I'm back where I started. It worked fine in beta 1. When I disconnect the smart keyboard it usually works for a long time.Anyone else seen this?
4
0
1.2k
Jul ’19
UITabBarController ignores UITab view controllers when in UITabGroup
When composing tabs like this and selecting them in the sidebar, only the group's view controller is ever displayed, even when selecting the individual first and second tabs. Their view controllers are just ignored. Am I immensely stupid here or is this a bug in iPadOS 26 beta 3? // First tab let firstTab = UITab( title: First, image: UIImage(systemName: heart), identifier: hello ) { _ in UINavigationController(rootViewController: ViewController()) } // Second tab let secondTab = UITab( title: Second, image: UIImage(systemName: heart), identifier: hello2 ) { _ in UIViewController() } // Tab group let tabGroup = UITabGroup( title: Stuff, image: nil, identifier: stuff, children: [firstTab, secondTab] ) { _ in ViewController() } let tbc = UITabBarController(tabs: [tabGroup]) tbc.mode = .tabSidebar
Topic: UI Frameworks SubTopic: UIKit
3
0
217
Jul ’25
Apple Pay Fails in Chrome
I'm implementing Apple Pay for our application via the Apple Pay JS API, and everything works as expected when initiating a session from a Safari browser. However, when attempting to start a session in a non-Safari browser (Chrome in this case), I see the following behavior: The Scan Code with iPhone popup appears I scan the code with my device (9th gen iPad running iPadOS 18.5 if that matters) The Apple Pay view does not appear on the device, and the Scan Code popup closes on the browser without any further information given. I can see the messages being passed in the network tab, with the final message being a getPaymentRequestResponse message appearing at the time the code is scanned. I suspect merchant validation is failing since that should be the next step, but that's just an educated guess at this point. I would appreciate any help getting this issue resolved.
3
0
171
Jul ’25
CFNetwork crash in CFURLRequestSetMainDocumentURL
I have received two strange crash reports from an iPad11,7 running iPadOS 15.1 and an iPad11,2 running iPadOS 15.2. On both occasions, the crashed thread calls CFURLRequestSetMainDocumentURL, which in turn calls _dispatch_source_set_runloop_timer_4CF in libdispatch, after which the application crashes with SIGSEGV and SEGV_MAPERR. The crashed thread's call stack is displayed below. Full crash logs are attached as well. What could this be? Exception Type: SIGSEGV Exception Codes: SEGV_MAPERR at 0x21d Crashed Thread: 20 Thread 20 Crashed: 0 libdispatch.dylib 0x00000001829e1784 _dispatch_source_set_runloop_timer_4CF + 36 1 CFNetwork 0x00000001834fc824 CFURLRequestSetMainDocumentURL + 2240 2 CFNetwork 0x00000001836b89a8 _CFNetworkErrorGetLocalizedDescription + 693652 3 CFNetwork 0x00000001834fdb1c CFURLRequestSetMainDocumentURL + 7096 4 CFNetwork 0x00000001834f3c34 CFURLRequestSetURL + 9668 5 libdispatch.dylib 0x00000001829ca914 _dispatch_call_block_and_release + 28 6 libdispatch.dylib 0x0000000
11
0
5.4k
Nov ’24
"Missing required icon file" when submitting to TF from Xcode 26 beta 1
Trying to submit a build to TF from Xcode 26 via Xcode Cloud (both for iOS and macOS). The operation fails with this message: Missing app icon. Include a large app icon as a 1024 by 1024 pixel PNG for the 'Any Appearance' image well in the asset catalog of apps built for iOS or iPadOS. Without this icon, apps can't be submitted for review. For details, visit: https://developer.apple.com/documentation/xcode/configuring-your-app-icon. If you’ve added an icon made with Icon Composer, visit https://developer.apple.com/app-store-connect/release-notes/ for details about known issues. I thought it's because Icon Composer icons may not be supported yet, but then that last sentence is confusing me. Does this mean that TF just won't support Xcode 26 uploads yet, or does it accept them and I need to provide legacy icons for my build?
11
0
482
Jul ’25
NavigationSplitView sidebar toggle button missing on iPadOS 26 beta 3
I just upgraded to Xcode 26 beta 3 and when I run my iPad app the toggle sidebar button is no longer visible when I set the column visibility to .detailOnly. I don't apply any modifiers to my NavigationSplitView. It looks like this. NavigationSplitView(columnVisibility: $sceneModel.columnVisibility) { GPSidebarView(appModels: self.appModels()) } detail: { GPRootContentViewIOS26(appModels: self.appModels()) } I also don't do .toolbar(removing: .sidebarToggle) anywhere in my code. Yesterday when I had Xcode 26 beta 2 the toggle sidebar button was there on my detail only view. I am trying to figure out if there is something that I did to break this and after looking at my git history the only thing I can see is that I upgraded Xcode 26. Here is what I get when I set the column visibility to .detailOnly. Then here is what I get when I set the column visibility to .doubleColumn.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2
0
198
Jul ’25