xcode-storyboard
Text views and image view disappearing from view controller in Xcode 6.1 storyboard
Another workaround is to add constraints to the layout Before resizing of any views. (add missing constraints e.g.). The bug only seems to occur when there are no constraints available. I have reported the bug to Apple with Bugreporter. Edit: So, at least it seems that Apple Bugreporter is working. The problem is fixed in … Read more
Autoshrink setting for UIButton in Storyboard
You can use User Defined Runtime Attributes to set this flag using the storyboard. Set the following key path: titleLabel.adjustsFontSizeToFitWidth to true
What is the difference between launchscreen.storyboard and main.storyboard
They are two completely different things. The launch screen is what first appears when the user taps the app icon before the app is finished launching. It shows a single, static screen. It can’t be dynamic and it can’t use any custom classes or code. It’s the replacement for launch images. The main storyboard is … Read more
Could not find a storyboard named ‘MainStoryBoard’ in bundle NSBundle
I had my app working normally on the iPhone Simulator but strangely Xcode stopped responding and i had to Force Quit Xcode. When I restarted Xcode i encountered “Could not find a storyboard named MainStoryboard….”, I have fixed this issue by following below steps: Renaming “MainStoryboard.storyboard” to “MainStoryboard_1.storyboard” Open file “$your_app$-Info.plist” located in “Supporting Files” … Read more
UIPageViewController and storyboard
2023. Swift updated. Nowadays it is dead easy to do this simply using Storyboard. These sort of “swiping full-screen tutorials” were popular as app “intros” for awhile, so I called the class below IntroPages. Step 1, make a container view that is a UIPageViewController. If new to iOS, here is a container view tutorial. ( … Read more
How to remove constraints programmatically that is added from storyboard?
As @Henit mentioned, you can set IBOutlet for constraints as well. For example, @property(weak, nonatomic) IBOutlet NSLayoutConstraint *viewHeight; so now, you can remove this constraint like this: [myView removeConstraint: viewHeight]; Or else if you want to remove all / multiple constraints related to your view then, [myView removeConstraints: constraintsArrayHere]; // custom array of constraints references … Read more