Search results for

iPadOS 17.7.7

3,647 results found

Post

Replies

Boosts

Views

Activity

App Rejected Due To Subjective Design
Hello, My app was rejected, with the reason being given: -- Parts of the app's user interface were still crowded, laid out, or displayed in a way that made it difficult to use the app when reviewed on iPad Air (5th generation) running iPadOS 26.0. Specifically, when viewed on iPad, your app uses only a portion of the screen. It is the same layout as the iPhone 16 on the iPad air, and I know of multiple apps that follow this scheme. I have even sent images. I believe that I am absolutely in the right here. Please do let me know.
1
0
256
Sep ’25
Full Xcode on iPad Pro with M-series processors
The iPad Pro on iPadOS 26 now operates on the same class of silicon as Apple’s entry-level Macs. It ships with M-series processors, 8GB of unified memory, support for multiple resizable windows, a menu bar, and proper external display connections. The device already has the foundation required for professional software development. The only gap is the absence of Xcode. Making the full version of Xcode available on iPad Pro would not take away from the Mac. Large and resource-intensive projects will still require the power of MacBook Pro and Mac Studio. What it would do is allow smaller and mid-sized projects to be developed directly on iPad Pro, which the hardware is fully capable of handling. That dynamic is complementary, not cannibalizing. Developers would continue to buy Macs but would also buy iPad Pros for portability and flexibility. The revenue upside is clear. Lowering the entry barrier means more developers enrolling in the Apple Developer Program at $99 per year, creating predictable recur
2
0
183
Sep ’25
Reply to iPadOS 26 - Status bar overlaps with navigation bar
Are you able to reproduce the issue using this sample code: Customizing your app’s navigation bar on iPadOS 26 (23A341)? If you are not able to reproduce the issue, please apply the learnings from the sample code to your project. If you're able to reproduce the issue using that sample, please share a test project that reproduces the issue and I'd be happy to look into the issue.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
SwiftUI inspector inside NavigationStack causes scrolling and transition issues
We’ve encountered an issue while developing with SwiftUI: when using the inspector on iPadOS, if the inspector is placed inside a NavigationStack, and both the view attached to the inspector and the content inside the inspector itself are scrollable, scrolling them to the top may cause abnormal jitter. We suspect this issue might be related to NavigationTitle. However, if we place the inspector outside the NavigationStack, tapping any NavigationLink while the inspector is expanded will cause problems with the View.matchedTransitionSource(id:in:) animation. A reproducible project can be found here: https://github.com/ThreeManager785/Inspetor-Issue We’ve tried many approaches but haven’t been able to resolve it. Is there any way to fix this issue?
1
0
181
Sep ’25
iPadOS 26 - Status bar overlaps with navigation bar
Hello, I'm experiencing a navigation bar positioning issue with my UIKit iPad app on iPadOS 26 (23A340) using Xcode 26 (17A321). The navigation bar positions under the status bar initially, and after orientation changes to landscape, it positions incorrectly below its expected location. This occurs on both real device (iPad mini A17 Pro) and simulator. My app uses UIKit + Storyboard with a Root Navigation Controller. A stack overflow post has reproduce the bug event if it's not in the same configuration: https://stackoverflow.com/questions/79752945/xcode-26-beta-6-ipados-26-statusbar-overlaps-with-navigationbar-after-presen I have checked all safe areas and tried changing some constraints, but nothing works. Have you encountered this bug before, or do you need additional information to investigate this issue?
7
0
747
Sep ’25
Reply to BUG: Store kit configuration file processing macOS
Here's the code. It works on iOS/iPadOS but not macOS for the same .storekit file??? import SwiftUI import StoreKit public enum License: String, CaseIterable, Identifiable { public var id: String { self.rawValue } case subscriptionLifetimePremium = subscription.lifetime case subscriptionYearlyPremium = subscription.yearly case subscriptionMonthlyPremium = subscription.monthly } struct ContentView: View { var body: some View { VStack { Image(systemName: globe) .imageScale(.large) .foregroundStyle(.tint) Button(StoreKit Test) { Task { @MainActor in // Request our offers from the app store let productIDs = License.allCases.map { $0.rawValue } print(productIDs: (productIDs)) let productsOffered = try await Product.products(for: Set(productIDs)) print(productsOffered: (productsOffered)) } } } .padding() } }```
Topic: App & System Services SubTopic: StoreKit Tags:
Sep ’25
Reply to Speech Recognition Problem in iOS 18.0
Alas, my enthusiasm was a little bit premature. While my iPhone running iOS 26 proves that the problem has been fixed, somebody's iPad (though running at the moment iPadOS 18), despite getting the app being compiled and installed from Xcode 26, shows the bug being still there. How come that iOS 26 does have a fix, but iPadOS 26 does not (I checked on Simulater as well).
Topic: App & System Services SubTopic: General Tags:
Sep ’25
Reply to hidesBottomBarWhenPushed in iOS 26
Hi team, I found another werid issue in iPad OS 26 only. I can easily reproduce it with a simple example app even in iPadOS 26 RC. I've submitted a feedback FB20215332, could you have a look? Thanks! We have a UITabBarController which contains two tabs. The first tab is a UINavigationController which includes ViewControllerA and ViewControllerB The second tab is just a simple UIViewController ViewControllerC We set the self.traitOverrides.horizontalSizeClass = .compact in TabBarController because we don't want to show the new style of tab bar. We set the hidesBottomBarWhenPushed to true for ViewControllerB when pusing from ViewControllerA because we don't want the tab bar to show in the navigation flow. Also, there is a button in ViewControllerB and it can navigate to ViewControllerC. However, when we tap the button in ViewControllerB, it did navigate to ViewControllerC but the TabBar is missing and at this point we have to kill the app, otherwise we cannot do anything. As I mentioned above, this iss
Topic: UI Frameworks SubTopic: UIKit
Sep ’25
Reply to Trackpad support on iPadOS
According to Accessory Design Guidelines iPadOS support HID trackpad. Is there a design example of such supported devices? I'm not sure what you mean. The Accessory Design Guidelines includes an example HID report descriptor as well as an example of an interaction and a corresponding command stream. Beyond that, there are many third party trackpads available, as well as our own products. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Sep ’25
How to turn off background extension effect in UISplitViewController?
I have a triple-column UISplitViewController setup in tile mode. Each of the 3 columns has a table view controller. Under iPadOS 26, the section headers and row selection in the middle table extends all the way to the left of the screen, behind the primary column. It looks terrible. The documentation for Adopting Liquid Glass makes it sound like you can add this behavior by using UIBackgroundExtensionView. But I get this behavior automatically in a UISplitViewController. How do I turn this off? I created a simpler sample using a double-column split view with two table view controllers. Here's a screenshot of the result: Note how the section headers and the row selection appear all the way to the left edge of the screen. I don't want that effect. How do you turn off this effect in a UISplitViewController? Here is the code used to setup the split view and the app's main window: func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) { gu
5
0
252
Sep ’25
Reply to Transaction.currentEntitlements not working on ios26?
Hello - Please file a Feedback Assistant ticket at https://feedbackassistant.apple.com/ and include the following: App name and app ID Product ID(s) Steps to reproduce IMPORTANT: attach sysdiagnose log(s). Download PDF instructions for Sysdiagnose for iOS/iPadOS here. Screenshot(s) and/or screen recording(s) to demonstrate the issue Any other critical information For more information about Feedback Assistant, please visit https://developer.apple.com/bug-reporting/. Once you have filed the Feedback Assistant ticket, please reply to this Developer Forums thread with the Feedback Assistant ID (e.g. FB########) and/or link (e.g. https://feedbackassistant.apple.com/feedback/########), and our teams will take a look. Thank you.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
Reply to SwiftUI Table Header Background not appearing in iPadOS 26
Hi @DTS Engineer I included the exact sample code to reproduce this problem in my original post. It is a self-contained example snipped that can be previewed in Xcode. For reference, let me include it again: import SwiftUI struct TablePreviewContent: Identifiable { var id: Int { text.hashValue } var text: String } #Preview { let content = [TablePreviewContent(text: Hello), TablePreviewContent(text: World)] Table(content) { TableColumn(Title, value: .text) } } Previewing this on iPadOS 26 as well as iPadOS 18.5 within Xcode 26 (Release Candidate, Version 26.0 (17A321)) results in the output I shared in the screenshot above. Please note that this request is regarding SwiftUI.Table and not SwiftUI.List.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Sep ’25
iOS 26 RC: Scope button in stacked UISearchBar block touches
This is really odd. If you setup a UISearchController with a preferredSearchBarPlacement of .stacked and you setup the search bar with scope buttons, then when the view controller is initially displayed, the currently hidden scope buttons block touch events from reaching the main view just below the search bar. But once the search is activated and dismissed, then the freshly hidden scope buttons no longer cause an issue. This is easily demonstrated by putting a UITableViewController in a UINavigationController. Setup the table view to show a few simple rows. Then setup a search controller using the following code: func setupSearch() { // Setup a stacked search bar with scope buttons // Before the search is ever activated, the hidden scope buttons block any touches in the main view controller // in the area just below the search bar. // Once the search is activated and dismissed, the problem goes away. It seems that displaying and hiding the // scope buttons at least once fixes the issue that exists beforehand
3
0
500
Sep ’25