Search results for

iPadOS 17.7.7

3,647 results found

Post

Replies

Boosts

Views

Activity

Reply to Summary of iOS/iPadOS 26 UIKit bugs related to UISearchController & UISearchBar using scope buttons
Sadly none of these issues are resolved in iPadOS 26 RC. I’m really disappointed in how Apple has ignored such glaring issues for 3 months despite bug reports being filed with trivial demonstration apps provided. I’m going to be embarrassed to release my app update with iOS 26 support (these aren’t the only long unfixed iOS 26 bugs affecting my app). Please Apple, take more pride than this.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
Reply to Drag-and-Drop from macOS Safari to NSItemProvider fails due to URL not being a file:// URL
(Re: previous answers - skip if you haven't followed the saga) Adding some context for the answer. I added AppKit specifically because it's not UIKit, as I didn't want an answer for iOS or ipadOS, but macOS. The only SwiftUI line is the onDrag, that I faithfully added to the line as the caller, but I didn't think I'd have a different DropHandler for macOS and ipadOS, the culprit seemingly being the onDrag SwiftUI part that tries to give me only the good thing on macOS, but somehow is unusable. As I repeated, I wanted to quickly iterate and used the hacks instead of trying to use the Async versions, where some versions aren't actually available. The final code will be in Async, thank you. My first SwiftUI app was with GCD because there wasn't an alternative back then. There's one now. But I'm also butting heads with SwiftData, where models cannot be Sendable, but Async are also required to be sendable, so I've had a lot of fun on this topic. With the nearly 200 trials I had to do in order to
Topic: UI Frameworks SubTopic: AppKit Tags:
Sep ’25
Tesflight eCommerce error, Beta testers outside the US, for our MacOS App, are being told their ID is not valid in the US Store
Beta testers outside the US, for our MacOS App, are being told their ID is not valid in the US Store and that they must switch to a store in their country. Yet the store switch fails Essentially beta testers outside the US cannot do testflight sandbox eCommerce for the Mac version of our app. Note that eCommerce on the Mac works for US based testers and eCommerce for the iOS/iPadOS works for testers in all territories. Many of these testers are in India, the UK and Canada. We believe that this is incorrect, that storeKit is not correctly detecting the AppStore Region for mac based testflight eCommerce. At this point we have 382 testers, most outside the US and we can only Beta Test our app with US users. Attached are images of the messages that are coming from storeKit: Here is a link to a video from a user in Canada who is demonstrating the problem (cut and paste into browser) https://youtu.be/kB818wfVld4 Here is another link to a video from a user in Canada who is demonstrating the problem (cut and
12
0
1.6k
Jul ’25
Reply to UIDocumentPickerViewController provides corrupt copy of file when user taps multiple times on file
As requested, we updated FB16131472 to show the asCopy:YES variant is still broken on iPadOS 18.6.2. Perfect, thank you. I think you'll be better always be better off doing the copy yourself (for example, that will let you provide better progress data), but I'm optimistic that this will be fixed in the near future. __ Kevin Elliott DTS Engineer, CoreOS/Hardware
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
UIDocumentPickerViewController provides corrupt copy of file when user taps multiple times on file
We're trying to implement a backup/restore data feature in our business productivity iPad app using UIDocumentPickerViewController and AppleArchive, but discovered odd behavior of [UIDocumentPickerViewController initForOpeningContentTypes: asCopy:YES] when reading large archive files from a USB drive. We've duplicated this behavior with iPadOS 16.6.1 and 17.7 when building our app with Xcode 15.4 targeting minimum deployment of iPadOS 16. We haven't tested this with bleeding edge iPadOS 18. Here's our Objective-C code which presents the picker: NSArray* contentTypeArray = @[UTTypeAppleArchive]; UIDocumentPickerViewController* docPickerVC = [[UIDocumentPickerViewController alloc] initForOpeningContentTypes:contentTypeArray asCopy:YES]; docPickerVC.delegate = self; docPickerVC.allowsMultipleSelection = NO; docPickerVC.shouldShowFileExtensions = YES; docPickerVC.modalPresentationStyle = UIModalPresentationPopover; docPickerVC.popoverPresentationController.sourceView = self.view; [self
9
0
1.1k
Sep ’25
Reply to iOS26 UISearchbar and UISearchController cancellation issues
I just opened a bug report on this issue, FB20094470. This issue impacts my app. I read the docs and understand that the search bar Cancel button should not appear on iPadOS. However, in my app, without explicitly setting any cancel button property on the search controller or search bar, a Cancel button has automatically appeared and functioned as expected on iPads from iOS 5 through iOS 18. Just say'n. But I can live without it.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
Reply to UIDocumentPickerViewController provides corrupt copy of file when user taps multiple times on file
We recently updated our app to utilize the work-around suggested by Kevin Elliott. We're happy to report this work-around operates correctly with a USB drive on an iPad running iPadOS 18.6. Thus, we marked his answer as accepted. Specifically, our app now uses asCopy:NO when initializing UIDocumentPickerViewController. Our code then calls NSFileManager, which copies the selected file as a security-scoped resource to a local (i.e., private) folder in NSTemporaryDirectory(). Our app then processes this local file as before. We added a new phase to the beginning of our progress meter, which informs the user their selected file is being copied to the device. We appreciate Kevin's insight on this topic and his ability to point us in the right direction! As requested, we updated FB16131472 to show the asCopy:YES variant is still broken on iPadOS 18.6.2.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
Reply to iOS26 UISearchbar and UISearchController cancellation issues
The “tapping the x in the search field cancels the search” issue has been in iPadOS 26 since beta 1. iPadOS 26 now emulates how Mac Catalyst apps have behaved for years. The issue doesn’t apply to iOS 26 since that shows a separate Cancel button. You can use FB17888632 as a demonstration of the issue. That is another search related issue I filed against iOS 26 beta 1 that still isn’t fixed in iPadOS 26 beta 9. It’s impacting my app and it also easily demonstrates the issue with the search getting cancelled when tapping the x icon to clear the search.
Topic: UI Frameworks SubTopic: UIKit Tags:
Sep ’25
Reply to ipados
@Manuelinh0 What happens in Software Update? Is anything listed for update, but it fails to install, or is nothing listed to install? Can you turn off developer beta updates, and turn them back on? You could try wiping it and putting it back to iPadOS 18, then enabling developer betas again?
Topic: Community SubTopic: Apple Developers Tags:
Sep ’25
iPadOS: remove system actions from Menu Bar
Hi, I am setting up the iPadOS26 Menu Bar, and it comes with some existing menu items that don't make sense for my app. For example, under File menu, there are options for New Window, Duplicate, Move, Rename and Export that I would like to remove (which keeping the Close Window option). What's the best way to do this?
Topic: UI Frameworks SubTopic: UIKit
3
0
202
Sep ’25
Dividers not appearing in menu bar on iPadOS 26
On macOS 26 I can see the dividers when I open my Help menu: However, on iPadOS 26 the dividers don't appear: I am simply using Divider() to separate my menu bar items in my CommandGroup. iPadOS does support dividers as I can see them for the system generated Edit menu but for some reason it's not working here. Does anyone know if I am doing something wrong with the iPadOS implementation?
2
0
133
Sep ’25
Reply to Request for Suggestions to Improve BLE Throughput on iOS Devices
I encountered the same issue. On iPadOS 17 and earlier systems, data packets could be sent multiple times within a single connection interval, but on iPadOS 18, they could only be sent once. Using a packet capture tool, I found that within a connection interval, iPadOS 17 sends a packet of data with the More Data attribute set to True, whereas iPadOS 18 sends it with the attribute set to False. As shown in the figure, multiple transmissions can occur within a very short time interval, whereas in iPadOS 18, only one transmission is allowed with an interval of 30ms Has your problem been solved? I would like to know if this issue is due to some restrictions imposed by iPadOS 18 or if there is a problem with our program configuration. I am looking forward to your reply
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’25
Reply to Request for Suggestions to Improve BLE Throughput on iOS Devices
I encountered the same issue. On iPadOS 17 and earlier systems, data packets could be sent multiple times within a single connection interval, but on iPadOS, they could only be sent once. Using a packet capture tool, I discovered that within a connection interval, iPadOS sends a packet of data with the More Data attribute set to True, while iPadOS sends it with the attribute set to False. As shown in the figure, multiple transmissions can occur within a very short time interval. In iPadOS 18, only one transmission is allowed with an interval of 30ms Has your problem been solved? I would like to know if this issue is due to some restrictions imposed by iPadOS 18 or if there is a problem with our program configuration. I am looking forward to your reply
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’25