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
0 answers

Meaning of iPadOS Widget Targets (Canvas, Device)?

I‘m trying to get the iOS and iPadOS widget sizes (small, medium and large) depending on the current UIScreen.main.bounds.size by using switch statements. Everything works like expected, but I don’t quite get which widget size is correct when…
Laurin
  • 1
  • 3
0
votes
0 answers

SwiftUI forcing individual views to different orientation for iPad

I am listening for existing orientation changes by using UIDevice.orientationDidChangeNotification, but is there a way to lock a SwiftUI View into a particular orientation? I do not want to introduce AppDelegate. Example: import SwiftUI struct…
Tejzeratul
  • 343
  • 6
  • 15
0
votes
0 answers

Cordova Support for iOS 15.3.1 and iPadOS16.3 and SSO Authentication error

I was just wondering if someone could help me please. When will the Cordova support for iOS and iPadOS expire? Or has it already expired, if yes since which version? Currently we are facing an authentication sso error, after generating a Cordova…
kiwi88
  • 1
0
votes
1 answer

Where do iOS apps on MacOS store their data without iCloud Drive?

Where do iOS and iPadOS apps, when installed from the App Store on MacOS, store their data when iCloud Drive is not enabled? Is this data encrypted at rest? Is it accessible to other processes outside of the application's sandbox?
Elle Fie
  • 681
  • 6
  • 21
0
votes
0 answers

How to get the TeamID of the Apple Developer Profile from the iPad in Xamarin.Forms

I'm working on Xamarin.Forms Application: I want to know the iPad's TeamID linked to Apple Developer Profile which will help in creating a work based on the TeamID in order to distinguish from which account the iPad belongs! As my company is having…
0
votes
0 answers

Passing Variables into other Variables and across files with SwiftUI

I want this file(file2) to revvieve edge input results of file1, modify them as desired then send them along to file 3 (charts) for realtime feedback. how do I pass variables into other variables as well across files while keeping the information…
0
votes
0 answers

How do I read/access file using c++ in Ipad Code App?

I am using an Ipad app called “Code App” with Clang compiler. I want to write an iris dataset program that finds k-means. However, when reading from a file in this app, it does not work. After checking my code, I tested the same piece of code on…
henry
  • 9
  • 5
0
votes
0 answers

How to get IPv6 address's specific attributes on iOS?

I want to get specific attributes associated with an IPv6 address on a network interface. (Basically I want to know whether this IP address is anycast address, detached, tentative, duplicated, or deprecated. If the address has any of these…
0
votes
1 answer

Get the value of URL Parameters in WKWebView and create new URL

I'm trying to get the current URL of the WKWebView, search/copy one value out of it, and create a new URL. I use Swift and have this an URL like that https://example.org/bundle-572974a2.html and try to get the following value 572974a2. My intention…
tobias
  • 25
  • 1
  • 4
0
votes
0 answers

How to manually set selection on SwiftUI List?

Same question here: How to stop showing Detail view when item in Master view deleted?. Now I am developing a macOS app, which there's a List and a Detail view, also there's a selection binding the list row, which use to delete the row. But when I…
FaiChou
  • 767
  • 7
  • 16
0
votes
0 answers

Is POSIX C networking / BSD socket APIs a supported API for Apple platfroms like iOS, iPadOS, tvOS?

We are writing a networking library that supports communication between endpoints on a proprietary protocol over UDP. We want to build that library not only for Apple Platforms but also other non-Apple platforms (like Windows, Linux, Android etc.)…
Abhishek Jain
  • 9,614
  • 5
  • 26
  • 40
0
votes
1 answer

WebRTC connection does not resume after mobile browser is backgrounded

I have a web application running on Safari on an iPad displaying a live WebRTC video stream. When the user switches away from Safari for a few seconds, and then switches back, the
rgov
  • 3,516
  • 1
  • 31
  • 51
0
votes
1 answer

How to get data from the device using IOBufferMemoryDescriptor in driverKit

I'm trying to create a driver for my usb device, using iOS and DriverKit. I'm basing my code in the example used in WWDC: https://github.com/knightsc/USBApp My driver starts fine when the device is connected and the readCompleted method is called…
xarly
  • 2,054
  • 4
  • 24
  • 40
0
votes
0 answers

Building IDE for iPadOS 16 - Limitations?

I'm considering a side project of making a simple IDE that can compile and run code locally on the iPad. How possible is this? Is there any iPadOS limitations that would prevent me to access the hardware on the iPad? Can I fully utilize the M1 chip…
0
votes
1 answer

SwiftUI .confirmationDialog on List/ListRow is working on iOS 15, but is unreliable on iOS/iPadOS 16+

SwiftUI .confirmationDialog on List/ListRow is working fine on iOS 15. I am using code like this example code: struct ContentView: View { @StateObject var viewModel = ViewModel() var body: some View { NavigationView { …
KlausM
  • 193
  • 12