Search results for

iPadOS 17.7.7

3,649 results found

Post

Replies

Boosts

Views

Activity

Software Update fails on 3rd Gen iPad Pro with iPadOS 16.1 Beta 8
After recently updating my 3rd Gen iPad Pro with iPadOS 16.1 Beta 8, I can no longer check for software updates. I receive and obscure error stating that the device can't check for updates. And, even though it has a Try Again button, clicking that multiple times results in the same error. Anyone else have any insights into this recent issue with the latest iPadOS Beta release? I've already sent feedback to Apple. Just curious if anyone else is experiencing the same issue. Update: Seems to be working now. I guess there was an issue with the update server?
0
0
798
Sep ’22
Am I using search wrong in iPadOS 14?
I can’t figure out how to get it to search anywhere except on Safari. Unlike prior versions, where searching for an app by name would show the app on my iPad or in the app store, I now only see websites in the search results. For instance, I have the Youtube app on my iPad. but if I search “youtube” the app is not in the search results. I only get “youtube.com” etc. And when I try to search for my banking app, it only shows me the bank's website URL. And yet, I see many online say that the new search is great as an app launcher. Yes, it is if the app you want is something frequently or recently used... as it will show up in the Siri Suggestions... but not when you're trying to search for the app on the iPad. I must be doing something wrong here, but can't figure out what.
8
0
1.7k
Jul ’20
Impossible to develop DriverKit drivers for iPadOS
There is currently no way to Bring your driver to iPad with DriverKit because it's impossible to develop a driver because developers can neither deploy to the device nor run there because there is no way to procure development provisioning profiles with the required entitlements for actual hardware (USB, PCI). I bought an M1 iPad just to test this alleged new capability and the only thing it's good for so far is theoretically transferring files quickly or attaching some kind of ethernet dongle. My 1 month no-questions-asked returns window is going to close soon! FB10152280 FB10244398 FB10244627 FB10160665 FB10152361 FB10160793 FB10152210 FB10160567 FB10244046 FB10427776
0
0
1.4k
Jun ’22
need Xcode for testing iPadOS 16.2
I have a crashing issue to investigate, that showed up with iPad OS 16.1. I tried the 16.2 beta to see if the problem was fixed, but it isn't. Next I was going to do a debug run of my app in Xcode, but then discovered Xcode only supports up to 16.1. Currently there is no Xcode beta download. Is there a way to find out when there will be a beta that can build for 16.2?
4
0
729
Nov ’22
iPadOS 26 Disable "open recent"
How can I remove the recents section from long-pressing on my app icon? I've added the following to my AppDelegate, which removes it from the top MenuBar, but not from the app icon context menu. My app has registered a custom filetype, but it is not a document based app. Opening files imports them into the app's user library, and so does not make sense to have a recents list. override func buildMenu(with builder: any UIMenuBuilder) { super.buildMenu(with: builder) builder.remove(menu: .openRecent) }
1
0
218
Aug ’25
AudioUnit may experience silent capture issues on iPadOS 18.4.1 or 18.5.
Among the millions of users of our online product, we have identified through data metrics that the silent audio data capture rate on iPadOS 18.4.1 or 18.5 has increased abnormally. However, we are unable to reproduce the issue. Has anyone encountered a similar issue? The parameters we used are as follows: AudioSession: category:AVAudioSessionCategoryPlayAndRecord mode:AVAudioSessionModeDefault option:77 preferredSampleRate:48000.000000 preferredIOBufferDuration:0.010000 AudioUnit format.mFormatID = kAudioFormatLinearPCM; format.mSampleRate = 48000.0; format.mChannelsPerFrame = 2; format.mBitsPerChannel = 16; format.mFramesPerPacket = 1; format.mBytesPerFrame = format.mChannelsPerFrame * 16 / 8; format.mBytesPerPacket = format.mBytesPerFrame * format.mFramesPerPacket; format.mFormatFlags = kAudioFormatFlagsNativeEndian | kLinearPCMFormatFlagIsPacked | kLinearPCMFormatFlagIsSignedInteger; component.componentType = kAudioUnitType_Output; component.componentSubType = kAudioUnitSubType_RemoteIO; componen
0
0
141
Jun ’25
iPadOS 26 UISearchController bug causing presented view controller to be dismissed
Under iPadsOS 26.0 and 26.1, if a view controller is presented with a presentation style of fullScreen or pageSheet, and the view controller is setup with a UISearchController that has obscuresBackgroundDuringPresentation set to true, then when cancelling the search the view controller is being dismissed when it should not be. To replicate, create a new iOS project based on Swift/Storyboard using Xcode 26.0 or Xcode 26.1. Update ViewController.swift with the following code: import UIKit class ViewController: UIViewController { override func viewDidLoad() { super.viewDidLoad() view.backgroundColor = .systemBackground title = Root navigationItem.rightBarButtonItems = [ UIBarButtonItem(title: Full, primaryAction: .init(handler: { _ in self.showModal(with: .fullScreen) })), UIBarButtonItem(title: Page, primaryAction: .init(handler: { _ in self.showModal(with: .pageSheet) })), UIBarButtonItem(title: Form, primaryAction: .init(handler: { _ in self.showModal(with: .formSheet) })), ] } private func showModal(with sty
2
0
366
Oct ’25