Questions tagged [ipados]

iPadOS is the operating system running on the Apple iPad. Use this tag only for questions specific to iPad OS. Use the [ios] tag in most cases. Use the related tags [objective-c] and [swift] for issues specific to those programming languages.

iPadOS is the iOS-based operating system for iPad devices, created and developed by Apple. It was introduced on June 3, 2019.

Latest version: 13.2.3 released on November 18, 2019.

286 questions
0
votes
1 answer

Register multi-touch as a single touch?

Is there a way to register multi-touch as a single touch? Say if I use three fingers to tap a large button, can it be registered as simply one tap of the button? -- the current default appears to treat it as a multi-touch, and as a result ignores…
MichM
  • 886
  • 1
  • 12
  • 28
0
votes
0 answers

How can I automatically launch an app from Safari without required permission?

I’m currently working on a smart mirror prototype and for that I use an iPad Pro that is connected to a screen. On the iPad I installed my Unity app. Now I need to be able to automatically open the app from the browser (I’ll implement additional…
Oliver
  • 25
  • 1
  • 6
0
votes
1 answer

How can I choose which scene gets restored on iPadOS when all have been dismissed?

I have an iPad app in which I'm starting to support multiple windows / scenes. I have one main window type, let's say MainScene, and at least one secondary window type for opening specific types of content, say DetailScene. I have not declared my…
Tom Hamming
  • 10,577
  • 11
  • 71
  • 145
0
votes
1 answer

Set UIWindowScene.PresentationStyle on Scene?

I have a sample view that I'd love to render as a modal window, similar to the Mail message compose window in iPadOS 15: WindowGroup("general.status", id: "create") { authorView } .handlesExternalEvents(matching: ["starlight://create"]) …
0
votes
1 answer

Slide Over in iPadOS 15 breaks NavigationLink (SwiftUI)

I’m having issues when using NavigationView and NavigationLinks on iPadOS 15. Currently running Dev Beta of iPadOS 15.3 (19D5026g), but I’ve had this issue since the release of 15.1. When I’m using my app as usual, nothing is wrong. But when I turn…
0
votes
1 answer

inTune APP app is installed but there is a newer version available?

I have Microsoft Outlook assigned to my iPad estate with inTune and a number of devices are showing "App installation failed" with the following error that I cannot find a resolution for. Error code: 0x87D13B9F An app update is available. Available…
Sean
  • 862
  • 8
  • 28
0
votes
0 answers

Get item's URL with DropDelegate in SwiftUI

I have a SwiftUI View conforming to DropDelegate and working correctly in order to receive images from other apps in macOS and iPadOS, but the behavior in both operative systems are quite different: struct ContentView: View {  var body: some…
AlbertUI
  • 1,409
  • 9
  • 26
0
votes
0 answers

Open Files app on iPadOS and iOS from my app

On macOS I can do this in order to show a file in Finder: // OPEN THE DIRECTORY IN THE FINDER NSWorkspace.shared.activateFileViewerSelecting([NSURL].init(arrayLiteral: NSURL.init(fileURLWithPath: orthokitPatientsURL.path)) as [URL]) How can I do…
AlbertUI
  • 1,409
  • 9
  • 26
0
votes
0 answers

Different UI depending on whether app is full screen or split screen in SwiftUI

I wan to create different ui depending on whether app is full screen or split screen just like the Vectornator app in SwiftUI. How do i do this?
Sayan Paul
  • 77
  • 2
  • 4
0
votes
2 answers

Connecting 30 iPads

I am currently programming an app for my school. During the lesson the teacher needs to send and stream data to the students. There is a case in which one of the students streams the data to everyone else. The teacher uses an iPad and every student…
0
votes
0 answers

How to access and read a file on a USB drive from IOS? (Connected via OTG cable to iPhone)

Can I parse a file (access a text file and read contents) on a USB drive from IOS? (Eg OTG cable to iPhone). Is USB device that mounts as file system normally, e.g. on MacBook Which library/framework to use? Or is it possible from iPad if not from…
Greg
  • 34,042
  • 79
  • 253
  • 454
0
votes
1 answer

iPadOS UIToolbar wrong place after rotation

I'm adding a UIToolbar in top of the keyboard using inputAccesoryView: let toolbar = UIToolbar() toolbar.barStyle = .default toolbar.isTranslucent = true toolbar.sizeToFit() toolbar.isUserInteractionEnabled = true ... textField.inputAccessoryView…
pableiros
  • 14,932
  • 12
  • 99
  • 105
0
votes
1 answer

Using numberOfTouchesRequired to implement secondary click with TrackPad

I want to implement the secondary click on iPad to show options. let tapTwoRecog = UITapGestureRecognizer(target: self, action: #selector(tapTwoAsLongPress(gesture:))) tapTwoRecog.numberOfTouchesRequired = 2 …
Kimi Chiu
  • 2,103
  • 3
  • 22
  • 37
0
votes
1 answer

Scrolling in app when the Ipad is landscape and the app no longer fits in the size of the screen

Hello stackoverflow community, I have just added the constraints to my iPad app and would now like that if you hold the iPad across that you can scroll the page, because not everything fits on a transverse page. If the Ipad is upright you should not…
Gonkikong
  • 1
  • 1
0
votes
1 answer

SwiftUI: Show "lock screen" on launch/enter foreground?

I am developing an iOS app in SwiftUI that will need to lock/unlock cryptographic keys from the keychain before any operations can be performed. I would like to have those keys in memory while the app is in use, and then removed from memory when…
Shadowman
  • 11,150
  • 19
  • 100
  • 198