12,404 questions
3
votes
2
answers
1k
views
Navigation item title hidden when using large title in iOS26
After updating my app for iOS 26, the navigation item title stopped working when using large title and scrolling. Before the update, the large title was shown and when scrolled up, the normal small ...
0
votes
1
answer
44
views
Get image to actually tile in storyboard same as it does for SwiftUI [duplicate]
So I have this code in SwiftUI, it's working great.
.background(
Image("felt")
.resizable(resizingMode: .tile)
...
-1
votes
1
answer
144
views
How to fix Navigation Bar shifted down in Storyboard
I haven’t opened my iOS project in a while. It was built using a storyboard and most view controllers are embedded in a UINavigationController.
Today I opened the project in Xcode (latest version), ...
1
vote
1
answer
37
views
UITabBarController Head and Body Layout [closed]
Maybe there isn't a way. I'm pretty sure there is a way to customize the UITabBarController layout to work.
My question is about having a header and body in UITabBarController. I have the following ...
-1
votes
1
answer
80
views
Storyboard Button: change font size AND round corners
How can we change the font size AND round corners of a button on a storyboard?
Button of style "gray" has a default value of rounded corners.
That is good.
But style "gray" DOES ...
-2
votes
1
answer
92
views
Storyboard navigation bar title text attributes, Title Font not working
In Xcode 16 (16.2 at the moment) I'm unable to set the title text attributes Title Font for a navigation controller's navigation bar. If I pop down the little popover for the title text attributes ...
0
votes
1
answer
67
views
Insert View Programmatically in storyboard designed Stackview in Swift iOS
I have created a stackview in storyboard which is having three buttons and I want to insert a separator in between all these three buttons, so I have created a separator blank view programmatically ...
0
votes
0
answers
80
views
Xcode storyboard - RTL icons not works
In my iOS project I have two languages, English and Arabic.
Problem:
For Arabic it will switch to RTL, but back icon we should use different icon for RTL.
From the image, I changed direction from ...
0
votes
1
answer
75
views
viewDidAppear Not allowing me to edit IBOutlets [duplicate]
Hi I am very new to swift coding and attempting to make a fake progress bar with the UIProgressView.
I have code in a viewDidAppear so that once the view controller appears it starts but none of the ...
2
votes
0
answers
45
views
How to prevent animation from playing on control load?
Imagine a WPF control that has a trigger in which its EnterAction/ExitActions have a Storyboard inside.
In my case it's an Expander which animates the expand/collapse action based on the IsExpanded ...
0
votes
1
answer
111
views
R.swift doesn't generate resources for xibs and storyboards in SPM
I need to transfer all resources to SPM. Strings and assets of images are fine, but xibs and storyboards are a problem. At the same time, information about them appears in the R.generated file in the ...
1
vote
1
answer
70
views
How to Animate a Border Brush opacity
How do I set a storyboard to animate the opacity of a Border.BorderBrush. I want to create a DashBoard control where the control is surrounded by a 'Pulsing' border ie the opacity of the border ...
2
votes
0
answers
110
views
Difficulty with UITextField visibility in dark theme when background turns yellow on strong password suggestion
I have a UITextField in my iOS app where the background turns yellow automatically when iOS suggests a strong password. This behavior is handled automatically by iOS. However, in dark theme mode, the ...
0
votes
0
answers
38
views
Adding new items does not show even its added but seems the font is white or something but chaning fonts didn't solve it
enter image description hereAfter adding items doesn't show at simulator even the data added to DB, items should show in simulator with CoreData even it was showing perfectly before with standard ...
0
votes
0
answers
58
views
Why does this segue work but the view doesn't change?
I'm trying to use a segue to pass through some user input from a custom alert but for some reason when I perform the segue the view on the app doesn't change. But the viewdidload on the destination ...
0
votes
0
answers
41
views
Animating an ellipse only while mouse is over grid
I have am writing a xaml project with an ellipse drawn inside a grid. Currently, I am animating the length and width of the ellipse repeatedly once the grid is loaded. I want to make the following ...
1
vote
1
answer
58
views
Why can't the buttons be tapped in the simulator?
I am building an app that displays discount cards, like business cards for my local businesses.
Here is my CardData.swift:
import Foundation
import UIKit
struct CardData {
let image: UIImage
...
-2
votes
1
answer
75
views
How do I trigger an event sent from a child custom class to a parent using storyboard?
I am new to macOS app writing so I'm doing something with storyboard. I took an existing app source demo I found on the web and I'm modding it. I've learned quite a bit from playing with it but I ...
0
votes
1
answer
126
views
Can we add a button inside Textfield in Storyboard based UIKit application?
I created a textfield and button in storyboard inside a stack view.I want my button to be inside textfield. For this inside code I have written :
textField.rightView = button
textField....
-5
votes
1
answer
67
views
How to show sign-in screen before main screen?
I’m making an iOS app in Xcode using Swift. I have my launch screen and this goes to the main storyboard after it’s loaded. I have made a signup/login page and would like this to appear after the ...
0
votes
1
answer
65
views
Update Storyboard Binding in Real TIme
I want to animate an object along a circle with a sinusoidal radius, where the amplitude and frequency can change.
I've managed to create the sinusoidal circle, and an object which follows its initial ...
0
votes
2
answers
96
views
Programatically instantiating UIViewController from storyboard with subviews
I'm migrating an app from Storyboards and UIKit to SwiftUI. It's a big app, so I am doing it in stages. Specifically, I am embedding a few old UIKit assets within SwiftUI using ...
0
votes
1
answer
37
views
ScrollView disable on Device Orientation
I am using ScrollView on the screen while in portrait mode. When I change the orientation, can I disable the scrolling?
ScrollView can be disabled from the storyboard or it needs to be solved using ...
0
votes
1
answer
55
views
How to Animate Transforms in code behind?
I have a Button. For some reason, I would like to apply transforms in code behind. And The transforms work fine. But when I try to add animations on the transforms, the animations don't take effect. ...
0
votes
1
answer
62
views
How to access the storyboard of an SDK?
I have created an SDK which includes a storyboard. In the storyboard there are 4-5 view controllers. How to access the storyboard of the SDK?
Here is my code:
- (void)openAppleInAppProvisionMain {
...