Search results for

iPadOS 17.7.7

3,648 results found

Post

Replies

Boosts

Views

Activity

clicking on a navigation button works in iOS, but not in macOS or iPadOs
I have an app which sets different kind of scheduled timers, and while on iOS it works like a charm, there are issues with macOS and iPadOS. When I click on one button it and then the other, the switching works once, but on the other way around in does not. Shouldn't my current view be dismissed when I click on another Link, just like the view is being dismissed when I click on the back button on an iPhone? Here is my contentView file ContentView.swift - https://developer.apple.com/forums/content/attachment/4e34203a-8eff-430f-8c27-f78517287a30
2
0
583
Aug ’20
Problems iPad Recovery with Finder and Configurator (iPadOS Problem, Firmware)
We are having trouble resetting our iPads. iPads, 9th Generation, MDM in JAMF. When we put the devices (iOS 15.7) in the DFU and want to reset them using Mac Finder or Apple Configurator, we get various error messages (4013, 4016). The iPads cannot be reset and get stuck in the DFU. You use MacBook Airs with Ventura. We can then only rescue the stuck iPads via manual installation using MAC Finder and the ipws file with iPadOS 15.7. Does anyone know this problem?
1
0
710
Nov ’22
Reply to DriverKit driver does not appear in iPadOS app settings
The entitlements file looks okay. Remember, the vendor ID is a decimal number. I suggest that you install your app and driver on a Mac. There are more tools available to debug with, and you can add code to explicitly load and unload the driver, while on iPadOS that process is completely automatic. Are you using the same version of iPadOS now as you were using with the working (development version) of the driver? One version of iPadOS didn't show the Driver toggle in Settings, I don't remember which.
Topic: Code Signing SubTopic: General Tags:
Jun ’25
iPadOS 14 beta 8: AVSpeechSynthesisVoice.speechVoices() returns voices with emtpy names
Simply I did this using xcode beta 6 for iPadOS 14 beta 8: let osVoices = AVSpeechSynthesisVoice.speechVoices() for voice in osVoices { print((voice.language) (voice.name) (voice.identifier) (voice.gender)) } And there are 54 voices, but only one has non-empty name, Alex, and all others have empty names (), though part of voice.identifier contains name. Is this a bug or am I missing something?
3
0
822
Sep ’20
Auto-Lock not working in Single-App-Mode in iOS/iPadOS 15
Hi there I'm using macOS Server (V5.11.1) with Profile Manager and Apple Configurator 2 (V2.15) to manage iPads and iPhones within our company. All devices are running in Single-App-Mode (running a self-developed app). Further on all devices a auto-lock time of 2 minutes is configured. Since we updated some of our devices to iPadOS 15 resp. iOS 15, the auto-lock stopped working. On older versions (like iPadOS 14.8) it is still working. We already tried to solve the issue playing around with different settings - turned off AssistiveTouch, Guided Access, Low power mode, Focus, etc. but no effect. Do you know if this is a known bug in iPadOS/iOS 15 or is it just a side effect of a new feature? Thanks for your help! Rafael
2
0
799
Nov ’21
Webkit dynamic linking failing on iPadOS 26 beta 3
I am using XCODE-BETA (Version 26.0 beta (17A5241e)) on a Mac (running Sequoia 15.5) to develop an app using FoundationModel. I am testing on an iPad (iPad Pro 11 in, 2nd Gen, running iPadOS 26 Beta 3). My app works fine when I run it in the simulator (iPad 26.0). So I upgraded my iPad Pro to iPadOS 26 beta 3 to try it on a real device. When I run it on the device, I get an error about symbols not found. [See details below] Any idea what I need to change in my development configuration to allow me to run/test my app on a real device running iPadOS 26 beta 3? Thanks in advance, Charlie dyld[1132]: Symbol not found: _$s6WebKit0A4PageC4loadyAC12NavigationIDVSg10Foundation10URLRequestVF Referenced from: <65E40738-6E3A-3F65-B39F-9FD9A695763C> /private/var/containers/Bundle/Application/34F9D5CE-3E54-4312-8574-10B506C713FA/Blossom.app/Blossom.debug.dylib Expected in: /System/Library/Frameworks/WebKit.framework/WebKit Symbol not found: _$s6WebKit0A4PageC4loadyAC12NavigationIDVSg10Foun
1
0
220
Jul ’25
Elevated TabBar in iPadOS 18 covers Navigation-/Toolbar
The new elevated tab bar in iPadOS 18 covers the Navigation-/Toolbar of views within. A very simple example: import SwiftUI @main struct SampleApp: App { @State var selection: Int? var body: some Scene { WindowGroup { TabView { NavigationSplitView { List(0..<10, selection: $selection) { item in Text(Item (item)) .tag(item) } } detail: { if let selection { Text(Detail for (selection)) .navigationTitle(Item (selection)) .navigationBarTitleDisplayMode(.inline) } else { Text(No selection) } }.tabItem { Label(Items, systemImage: list.bullet) } Text(Tab 2) .tabItem { Label(Tab 2, systemImage: list.bullet) } Text(Tab 3) .tabItem { Label(Another Tab, systemImage: list.bullet) } } } } } I've tried using .safeAreaInset/.safeAreaPadding for the detail views, but they don't affect the NavigationBar, only the content within. Is there a way to move the NavigationBar down, so its items stay visible?
2
0
894
Oct ’24