From the course: iOS App Development: Creating iMessage and Sticker Applications

Unlock the full course today

Join today to access over 22,400 courses taught by industry experts or purchase this course individually.

Create a user interface

Create a user interface - iOS Tutorial

From the course: iOS App Development: Creating iMessage and Sticker Applications

Start my 1-month free trial

Create a user interface

- [Instructor] For designing the user interface of the secret messaging app, you can use any tool you like. But for the sake of simplicity, I'm simply going to use storyboards in Xcode. The secret messaging app will consist of two screens controlled by two separate view controllers. So let's first start by adding two view controllers from our object library. Once the controllers are added, make sure to set their class to the messages compact view controller as well as the create message view controller. Both of those classes are already added to the project. Simply select the view controller and set the class. Let's call this one the messages compact view controller, and the second one the create message view controller. The compact view controller will consist of a single button that will allow you to transition to the create message view controller. So let's go ahead and add a button. Make sure that the button is centered and let's give it some sort of a text so that we will know…

Contents