Search results for

iPadOS 17.7.7

3,647 results found

Post

Replies

Boosts

Views

Activity

iPadOS 17 "Could not locate device support files"
On XCode 14.3.1, downloading support files for iPadOS 17, fails with message: **Could not locate device support files You may be able to resolve the issue by installing the latest version of Xcode from the Mac App Store or developer.apple.com. [missing string: 869a8e318f07f3e2f42e11d435502286094f76de]** on XCode 15.0 beta (15A5160n), iPad does not show up. Have rebooted Mac, iPad, Settings > Clear Trusted Computers => no iPad in XCode 15 => missing support files message on XCode 14.3.1 Am stuck. How to get unstuck quickly?
8
0
31k
Jun ’23
New iPadOS 26 beta4 crash in `UISplitViewController`
Sample Project In iPadOS 26 beta4, when a UISplitViewController transitions to compact layout and proposes the secondary view controller, a crash occurs: *** Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Layout requested for visible navigation bar, ; layer = > delegate=0x102826600, when the top item belongs to a different navigation bar. topItem = title='Detail' style=navigator rightBarButtonItems=0x600000011e10, navigation bar = ; layer = > delegate=0x102826000, possibly from a client attempt to nest wrapped navigation controllers.' When we show the primary view, there is no crash. Similarly, there is no crash on beta-3. To reproduce the crash in the demo project: Launch the project on an iPad. Try the Demo Tap List-Detail Pattern To trigger the crash, select any of the list items and switch the app to a compact layout. The crash occurs because the app will attempt to propose the secondary view controller. To avoid the crasah, refrain from selecting an
Topic: UI Frameworks SubTopic: UIKit
1
0
220
Jul ’25
Reply to Swift Playgrounds 4
Swift playgrounds 4 is coming until end of this year! Apple say that on iPadOS 15 page say about swift playgrounds and its footnote say Available late 2021. https://www.apple.com/ipados/ipados-15/#footnote-1 https://developer.apple.com/videos/play/wwdc2021/102/ 0:34:00- We can’t wait new features!!!
Nov ’21
Reply to iOS 14 no signal, no cellular data
I also have the same issue in my iPad Pro 12.9 2018 wifi+cellular. This iPadOS 14 has crucial trouble. I have upgraded to iPadOS 14.0.1, but it still remains. I can't get any signal even cellular data. I also have tried some providers yet still have same issue. I really need this feature as my daily job. I regret to upgrade my iPadOS. Please fix this as soon as possible, Apple! 🙏🏻
Topic: App & System Services SubTopic: Core OS Tags:
Sep ’20
Reply to Entitlements for VMWare et al access to access USB devices
@eskimo , you said above that The entitlements required to do this are available to all developers for development. I have not been able to figure out how to do that on iPadOS. (I believe that) iPadOS apps need to be signed and provisions provided and entitlements granted. It is possible to develop software for iPadOS that does not require Apple to grant entitlement for a specific USB device (to associate with a DEXT)? Or is there another approach? Or am I not understanding correctly? Thanks!!! Gene
Topic: App & System Services SubTopic: Drivers Tags:
Feb ’24
Thumbnail images in iOS / iPadOS slow to update
Question asked during the 6-6-23 UIKit Q&A Slack session of WWDC 2023 My iOS / iPadOS / Catalyst app has a thumbnail extension with a QLThumbnailProvider subclass that implements the provideThumbnail(for:_:) method providing the thumbnail for a document created in my app, by drawing the thumbnail image into the current context. That implementation successfully updates the thumbnail for the document, but sometimes the thumbnail's displayed image (in, for instance, the Files app or my app's own UIDocumentBrowserViewController on iPhone or iPad) is slow to update. (This update slowness seems especially to be a problem for documents stored in iCloud Drive, rather than in local storage.) (1) Am I correct in presuming that the displayed thumbnail images are cached somewhere, and the reason the displayed thumbnail images are slow to update is because either (a) the thumbnail cache is slow to update and/or (b) the system only periodically calls the provideThumbnail(for:_:) method? (2) If so, is there som
2
0
1.5k
Jun ’23
iPadOS 18 TabView with Large Navigation Title
I’m following the example code from Apple to implement the new iPadOS 18 TabView() with the new Tab(). While the tabbing itself is working fine, I can’t get it to show up a (large) navigation title in the sidebar (like the Home or Files app). I’ve tried placing .navigationTitle(App Name) at the TabView, but that doesn’t work. Is it possible to do this in any way or is this not recommended to show? TabView { Tab(Overview, systemImage: film) { Text(Put a OverviewView here) } TabSection(Watch) { Tab(Movies, systemImage: film) { Text(Put a MoviesView here) } Tab(TV Shows, systemImage: tv) { Text(Put a TVShowsView here) } } TabSection(Listen) { Tab(Music, systemImage: music.note.list) { Text(Put a MusicView here) } Tab(Podcasts, systemImage: mic) { Text(Put a PodcastsView here) } } } .tabViewStyle(.sidebarAdaptable) .navigationTitle(App Name) .navigationBarTitleDisplayMode(.large) I know that there is also the .tabViewSidebarHeader() modifier, but that adds any view above the scroll view content. Neither
2
0
1k
Dec ’24
Can't add custom property into IORegistry on iPadOS 16
We are developing driver for our USB device. Our approach is to run and test driver on macOS first and then verify on iPadOS 16. In the driver we add custom property -kUSBSerialNumberString into default properties: OSDictionary * Driver::devicePropertiesWithSerialNumber() { kern_return_t ret; OSDictionary *properties = NULL; OSDictionary *dictionary = NULL; OSObjectPtr value; const IOUSBDeviceDescriptor *deviceDescriptor; deviceDescriptor = ivars->device->CopyDeviceDescriptor(); ret = CopyProperties(&properties); value = copyStringAtIndex(deviceDescriptor->iSerialNumber, kIOUSBLanguageIDEnglishUS); Log(Serial number: %{public}s, ((OSString *)value)->getCStringNoCopy()); dictionary = OSDictionary::withDictionary(properties, 0); OSSafeReleaseNULL(properties); if (value) { OSDictionarySetValue(dictionary, kUSBSerialNumberString, value); OSSafeReleaseNULL(value); } return dictionary; } next in kern_return_t IMPL(Driver, Start) we call SetProperties: ret = SetProperties(devicePropertiesWit
2
0
1.6k
Sep ’22
Criteria used for determining if an iOS/iPadOS app is suitable for visionOS app store?
Hi, in the Run your iPad and iPhone apps in the Shared Space session video, it is mentioned that all suitable iOS/iPadOS apps will be made available in the visionOS app store by default. I'm wondering if someone could share the criteria that will be used to determine if an iOS/iPadOS application is suitable for visionOS?
2
0
942
Jun ’23