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
5
votes
2 answers

Is there no way to run iPad OS 16.3 Sims in xcode right now?

I'm trying to fix a bug on a device running iPad OS 16.3, but xcode doesn't seem to be able to speak 16.3, best it can do is 16.2 Is there a way to run 16.3 on xcode right now? I can't find a manual download, and it's not in the xcode platforms…
Wesley
  • 5,381
  • 9
  • 42
  • 65
5
votes
2 answers

Inline Horizontal Buttons in SwiftUI Menu

In SwiftUI, there is a thing called a Menu, and in it you can have Buttons, Dividers, other Menus, etc. Here's an example of one I'm building below: import SwiftUI func testing() { print("Hello") } struct ContentView: View { var body: some…
adammenges
  • 7,848
  • 5
  • 26
  • 33
5
votes
1 answer

I can't add systemExtraLarge family in WidgetConfiguration for iOS 15

I want to add an extra large widget as supported family for iOS 15 in my application. The simplified code for WidgetConfiguration is as follows: var body: some WidgetConfiguration { IntentConfiguration( kind: "Widget", …
Tomeu Mascó
  • 319
  • 2
  • 11
5
votes
2 answers

How to show in SwiftUI the sidebar in iPad and portrait mode

I have an master detail app in iPad, and when run the app in portrait mode the sidebar is hidden. I need to push Back button to open the sidebar. Can anyone help me to show the sidebar by default? I found an answer that suggest to use…
5
votes
3 answers

SwiftUI + DocumentGroup in iOS/iPadOS: how to rename the currently open document

My question is regarding SwiftUI's DocumentGroup: using a simple, template-based project in Xcode (using the new multi-platform, document-based app template), I can create new documents, edit them, etc. Also, "outside" the app, I can manipulate the…
Vitor Enes
  • 203
  • 2
  • 9
5
votes
0 answers

I cannot find a solution to install ad-hoc ipadOS apps on MacOS with M1 CPU

I have a problem i cannot find a answer for. I want to deploy an ad-hoc certificated ipadOS app on my MacOS M1 machine. Even better if its possible to debug the ipadOS app directly on my MacOS M1 machine. The distributed app in app-store is easy to…
5
votes
2 answers

Toggle Sidebar in Code using SwiftUI NavigationView on iPad

I'm trying to utilize the built-in sidebar from SwiftUI 2.0 by using NavigationView like this: NavigationView { MainView() ListView() DetailView() }.navigationBarHidden(true) But since I want to use my own Custom Back Button, I've hidden…
ygee
  • 2,580
  • 3
  • 17
  • 21
5
votes
0 answers

IPad Chrome Google Colab notebook how to get rid of keyboard icon in cell

Using iPad Pro 2020 and google chrome app (using desktop site), Colab notebook has a big fat keyboard icon on every cell. How to get rid of it? I got a hardware keyboard for the iPad and absolutely don’t need that icon, it is wasting precious real…
5
votes
1 answer

Mac Catalyst: multi-window without supporting multi-window in iPad app?

I'm writing a card game app for iPad and want to bring it to the Mac using Catalyst. The game is not one where supporting multiple windows makes a lot of sense. However, there is a statistics screen that I show in a modal form sheet on iPad, which I…
UberJason
  • 3,063
  • 2
  • 25
  • 50
5
votes
0 answers

is there separate target for iPadOS apps?

Does apple provide a separate target for iPad OS like iOS or watchOS as shown below. TARGET_OS_IOS is just for iOS TARGET_OS_TV is just for tvOS TARGET_OS_WATCH is just for watchOS As now using iPad OS beta 13 for my app, but there is no official…
Manisha
  • 372
  • 3
  • 13
4
votes
1 answer

CoreLocation location permission dialog not displayed when in split screen

Here is the simplified version of my code: import UIKit import CoreLocation class ViewController: UIViewController { override func viewDidAppear() { super.viewDidAppear() let locationManager = CLLocationManager() …
Allan Spreys
  • 5,287
  • 5
  • 39
  • 44
4
votes
0 answers

How to share cacheStorage between Safari and PWA (Standalone mode) in iPadOS 14?

I am trying to share data between Safari and a PWA/Standalone mode "Add to Homescreen" app in iPadOS 14 (not iOS) using cacheStorage. I tried Pooya Estakhri's solution and it worked on iOS 14, but the same code did not work for iPadOS 14, even…
dbii
  • 41
  • 1
4
votes
2 answers

SwiftUI 2.0 List with children - how to make the tappable area of the disclosure button cover the whole list item

I am making a SwiftUI app for iOS 14, and I have a sidebar list that uses the new children: attribute of list to make the list expandable: However, at the moment I am only able to expand this list when I click precisely on the disclosure arrow. I…
themathsrobot
  • 581
  • 6
  • 20
4
votes
1 answer

iPadOS: Prevent UIContextMenuInteraction from triggering when not using pointer

UIMenu vs UIContextMenuInteraction vs UIPointerInteraction I'm trying to set up UIContextMenuInteraction in the same way as in Files or Pages app: (Long) tap anywhere in the blank space shows the black horizontal UIMenu Secondary (Right/Control)…
4
votes
1 answer

How to present actionSheet in iPhone style on iPad on iOS13?

Some background to understand the question better: On iOS 12 on iPad when I was using .actionSheet as a type for UIAlertController, it is shown as a popover. Also it was required to set a sourceRect and sourceView, otherwise it would crash. But.…
Tung Fam
  • 7,899
  • 4
  • 56
  • 63
1 2
3
18 19