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
1
vote
1 answer

Multi-line strings in Localizable.strings

I have the following in a swift file which is loaded on first app use: let descriptions = [NSLocalizedString(""" Hyperpolyglot will help you learn words and phrases in …
Tirna
  • 383
  • 1
  • 12
1
vote
1 answer

Is there a way that Appium can focus to new window tab in Safari?

I'm doing my task to automate a specific website's performance by using Appium. I'm testing the iPadOS(iOS 14.x and above) and the website has a new tab feature when a button is clicked. Now, the problem is that when I tried to use getWindowHandles…
Juvin DC
  • 13
  • 3
1
vote
1 answer

SwiftUI list does not scroll using 2-finger swipe on trackpad

I have been testing this simple SwiftUI code: It has a list in ContentView. When a cell of the list is tapped, it pushes a SecondList into the navigation stack. When this SwiftUI code was run on a real iPad with a trackpad, I used 2-finger swipe to…
Mark Lau
  • 147
  • 1
  • 9
1
vote
1 answer

SwiftUI VoiceOver making some views not be rendered

I am building an SwiftUI-App that should work with VoiceOver, but when VoiceOver is active parts of my UI is not rendered on screen. It works when I open the view and then activate VoiceOver. It just does not load correctly in combination with…
Jelumar
  • 470
  • 1
  • 4
  • 14
1
vote
0 answers

Strange issue with NavigationView on iPad (SwiftUI)

I have used NavigationView like this for iPhone and iPad, and in iPhone works fine. But for iPad, sometimes when enter a NavigationLink - it will go to the new view, then enter the same view again... and again for a few times! NavigationView { …
Lim Thye Chean
  • 8,704
  • 9
  • 49
  • 88
1
vote
2 answers

DidDeselect cells off screen

I am trying to show the selected cell in my UICollectionView by changing its border and shadow color. my issue is that my DidDeselect function causes a crash if I select a cell then scroll the selected cell of screen and select another cell, I…
elevate
  • 147
  • 7
1
vote
1 answer

Is it possible to have a DatePicker as a navigationBarItem in an iPad app?

I'm trying to simply add a DatePicker in SwiftUI to a navigation bar, this is my code: struct ContentView: View { @State var selectedDate: Date = Date() var body: some View { NavigationView { VStack { …
Ludyem
  • 1,709
  • 1
  • 18
  • 33
1
vote
0 answers

iPAD Chrome CORS cookie sharing

I have a web application which loaded in the iFrame of other web application (both are from same domain). I have enabled "Allowed - Cross site-Website tracking" option but it loses session when accessing site in iframe. It works fine with the same…
1
vote
1 answer

SwiftUI show popover relative to rect

I have a rect which represents what the user has selected in a document. I'd like to show a popover positioned relative to the rect using SwiftUI. In UIKit, this would be accomplished using UIPopoverPresentationController.sourceRect. I tried the…
Taylor
  • 5,871
  • 2
  • 30
  • 64
1
vote
0 answers

Unable to locate the problem why apple refuse my build

My Question : Since from some time, I'm experiencing app rejection from app store. The app runs without any issue on real device ipad/iphone with iOS 14.3 (latest) and the simulators. But app store testing team claims it crashes. Apple…
Thush-Fdo
  • 506
  • 1
  • 9
  • 28
1
vote
1 answer

How to stop showing Detail view when item in Master view deleted?

I have a Master and Detail views. User can tap on a item in Master view and details of that item is shown in Detail view. Also user can delete items from Master view — in that case, Detail view should display a text "Please select an item.". My…
Igor R.
  • 399
  • 4
  • 23
1
vote
0 answers

App fails when trying to do oauth on macOS catalyst, Works fine on iOS and iPadOS

I have an app that uses authentication via FirebaseAuth which, when logging in, accesses the authentication website on github (where my app is registered) to authenticate. The callback works perfectly on both iOS and iPadOS. I am able to compile…
1
vote
0 answers

WebRTC iOS Safari: When receiving audio only stream, you can barely hear anything even when volume is maxed

I have an issue with iOS/iPadOS Safari 14.2 and WebRTC: When a stream is received with audio only you can't almost hear anything. But when the stream sent by peer contains video, and even when that stream is consumed by an audio tag, everything…
Koodimetsa
  • 760
  • 9
  • 11
1
vote
1 answer

How to update window frames on an iPad split view?

I am trying to add a banner window which should show on top of the main window at all times. nothing from the main window should ever block the content on that banner window and the banner window should also not block the content of the main window.…
Anirudh Bandi
  • 1,171
  • 10
  • 20
1
vote
0 answers

Gesture events from iPad magic keyboard

I have a web app where the user can pinch zoom using gestures. It is coded in javascript and uses gestureStart, gestureChange and gestureEnd. It works nicely when the user pinch zooms by using fingers on the touch screen, but when I try pinch…
Jørgen Rasmussen
  • 1,143
  • 14
  • 31