From e7cd70360783b75c72f966133e9ae88407c9100d Mon Sep 17 00:00:00 2001 From: mrgsdev <157994617+mrgsdev@users.noreply.github.com> Date: Fri, 5 Jul 2024 10:29:03 +0300 Subject: [PATCH] Update storyboards@a2CqrCJSxGfHq6_Y9f_re.md (#6036) * Update storyboards@a2CqrCJSxGfHq6_Y9f_re.md * Update src/data/roadmaps/ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md fix styling --------- Co-authored-by: dsh --- .../ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md b/src/data/roadmaps/ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md index 56644e3a9..1d93e0d5a 100644 --- a/src/data/roadmaps/ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md +++ b/src/data/roadmaps/ios/content/storyboards@a2CqrCJSxGfHq6_Y9f_re.md @@ -1 +1,9 @@ -# Storyboards \ No newline at end of file +# Storyboards + +A storyboard is a visual representation of the user interface of an iOS application, showing screens of content and the connections between those screens. A storyboard is composed of a sequence of scenes, each of which represents a view controller and its views; scenes are connected by segue objects, which represent a transition between two view controllers. + +Xcode provides a visual editor for storyboards, where you can lay out and design the user interface of your application by adding views such as buttons, table views, and text views onto scenes. In addition, a storyboard enables you to connect a view to its controller object, and to manage the transfer of data between view controllers. Using storyboards is the recommended way to design the user interface of your application because they enable you to visualize the appearance and flow of your user interface on one canvas. + +Learn more from the following resources: + +- [@official@Storyboard](https://developer.apple.com/library/archive/documentation/General/Conceptual/Devpedia-CocoaApp/Storyboard.html)