1,296 questions
0
votes
2
answers
291
views
iOS 26 Modal View Controller with Transparent Background
Prior to iOS 26, this successfully gave me a modal view with a transparent background:
let settingsVC = MySettingsViewController()
settingsVC.modalPresentationStyle = .automatic
self.present(...
0
votes
0
answers
77
views
Presenting a rotating, sheet-style modal on top of another view controller locked in portrait orientation
I have an app whose main view controller (call it VC-A) is locked in portrait orientation. I would like to present a sheet-style modal (call it VC-B) over top of it, allowing the modal to rotate ...
3
votes
1
answer
312
views
iOS navigation bar overlaps status bar on landscape dismiss
I have an app almost entirely built with Xcode Interface Builder and no code with the exception of the overrides of supportedInterfaceOrientations to fix the UIViewControllers orientation to either ...
0
votes
1
answer
114
views
multiple .sheet() presentation : Integration on fast dismiss/present
I'm trying to build a view similar to what we see in the home screen of the Netflix iOS app, with multiple rows of cells.
Here's the structure of my views:
CollectionView(): Displays individual items ...
0
votes
1
answer
320
views
Passing a variable to the next view from a List row. SwiftUI
Hi Im new To SwiftUI I created a table using List and Grid/GridRow. The table is populated by a simple model Players. That just has the players first name, last name and score. When the users clicks ...
1
vote
0
answers
54
views
Present ViewController from TabBarController
I need to open ReportViewController from tabbar modally. How i can do that? I have this TabBarConfigurator:
import UIKit
final class TabBarConfigurator {
// MARK: - Private property
private ...
0
votes
1
answer
558
views
Back navigation in angular ionic ModalController
I need to use a modal in my project. The use case is allowing users to modify their settings. E.g., a button is in a configuration page, that clicking on it, the modal is opened and users can change ...
7
votes
1
answer
2k
views
Is it possible to make the "Presentation Hosting Controller" background color transparent instead of white color in SwiftUI?
I am trying to make a "FullScreenModalView" where you can send any view with a fixed height and width and it will show with a modal presentation. It is working perfectly but I can't make the ...
2
votes
2
answers
3k
views
Ionic modal height fitting content
Setting ionic modal height to auto/fit-content not working.
I'm trying to make an ionic modal on angular, have its setted according to its content. Currently i need to create the modals by a ...
1
vote
0
answers
142
views
Firebase Screen name issue with modal views in iOS 13 and above
In our app we are tracking screen views manually by adding relevant codes in viewWillAppear functions. With iOS 13, with the non fullscreen modals, the viewWillAppear of the parent screen won't get ...
0
votes
0
answers
123
views
Pass props to a component inside vuejs modal
So, the following modal is opened by this.$store.watch. Is there any way to pass payload object ( {payload: value.payload} ) to SharePage component directly from this.$modal.show('preview-share-modal',...
0
votes
0
answers
26
views
Sheet and modal UIKit and SwiftUI [duplicate]
I wanted to add a calendar function to my app. For that I've created a class Calendar View Controller :
class CalendarViewController: UIViewController, EKEventEditViewDelegate {
func ...
2
votes
0
answers
83
views
Dismissing AutoFill Extension on iPad makes the host app unresponsive
I'm developing an AutoFill Extension (AppEx) and stumbled upon the following bug, which happens on iPad only.
This bug is reproducible on device only (not reproducible on simulator) and can be ...
0
votes
2
answers
3k
views
react native can not push a screen from 'screen modal'
i have a modal screen like below:
<Stack.Screen name="ForwardChatContent" component={ForwardChatContentScreen}
options={{
...
0
votes
1
answer
114
views
popViewController after dismiss Modal VC Swift
I want to popViewController after I dismiss a modalVC. However my code is not working. What is wrong?
func showMessage(withTitle title: String, message: String) {
let alert = ...