As a mobile iOS developer, putting together an onboarding experience looks easy enough but there are some tricky hurdles to get over. Especially those "paging dots". By default, iOS wants to use white dots on a black bar. And no one wants that. So you have to implement a custom solution to show it in a way that actually looks decent.
Have you ever wanted to find more ways to make your app look nicer? If so, then this video is perfect for you because you will learn how to add custom fonts to your project in Xcode. First, you will learn how to add the custom font to your project and use it. Next, you will learn how to switch out some of the letters for alternate characters if your font has them.
When you’re finished with this tutorial you will have more ways to better customize your app and set it apart from the rest of the apps in the App Store.
By the time you are done watching you will learn how to customize the nav bar's background color, font and font color. You will learn how to do this in interface builder AND in code using UIAppearance.
In this video I give some tips on reducing hard-coded strings in your code. Hard-coded strings are a liability to your app as the compiler will not catch your mistakes. We use hard-codes strings to refer to the UITableViewCell identifiers. So let's see if there's a better way!
If you don't want to use the default tableview cells then you can create your own. In this video you learn how to create your own custom tableview cell.
You're obviously going to learn how to populate our next screen for the activities which will have sections or section headers. And you're also going to learn a lot of good things along the way including a new Swift 4.2 change (16:47) that was made.
Some other things this video teaches:
* Passing data from one view controller to the next 6:09
* Threading (background and main) 10:26
* How to select a specific item in an array 11:57
* How to solve a funny "bug" with UIImageViews 23:55
* Setting up TableView section functions 27:25
* How to create fallback values for variables that could be nil 31:42
* How to add variables to strings 33:57
* What default UI controls already exist in a UITableViewCell 38:22
* How to add and delete code snippets and had placeholder text 40:17
Navigate to another view controller after tapping a UITableViewCell. You will learn 3 different ways in which to navigate forwards and backwards using both storyboards or in code.
You will learn about segues, view controller functions to present and dismiss view controllers and navigation controller functions to push and pop view controllers.
Having trouble generating an icon for your app? Watch this video and learn my three simple steps to creating an icon. And the best part is I show you how to do all this with FREE tools! Get started today and you will generating app icons in no time.
Sometimes you want to help users with some tips about how to use your app. Learn one way you can do this by using the view controller's scene dock. We create a help screen and we keep track if the user has seen it or not. If the user has seen it, then we do not show it again.
In the last video you learned how to swipe to delete a table view row and present the user with an alert. In this video you will learn about swiping right and showing and edit action. When tapped we will present the user with our popup with the trip title and image loaded.
You're also going to learn some other things such as new Xcode 10 and Swift 4.2 features, calling a segue in code, problems with named colors and image assets, a tool to find matching colors to expand your color theme and much more!
-- CODE UPDATES --
There are some things I forgot to cover while teaching that are important.
1. We want to reset the tripIndexToEdit in our TripsViewController after the popup closes. If we don't set that variable back to nil then the popup will always thing you want to edit. We want to do this in the prepareForSegue, in the popup's doneSaving action:
In this video you will learn the new way to swipe to delete (since iOS 11). When swiping to delete a table view row we will be presenting the user with an alert confirmation too. You will learn how to configure the button that is exposed by swiping, such as setting the text, icon and background color and the action to perform after tapping the button exposed by swiping.
Learn how to access the user's photo library in iOS so they can pick a photo. And if the user denies access, how do you handle that if later they change their mind? Learn how!
You're going to learn a lot of other little things in this video too.
In this video you will learn different options for customizing the UITextField to show validation failed. Including how to add an image to the actual textfield, change it's color, border or placeholder text (hint text) if validation fails. These are just some of the options to indicate if text field validation fails. Combine, choose or invent ways to validate text fields in your app!
In this video you will learn different options for customizing the UITextField to show validation failed. Including how to add an image to the actual textfield, change it's color, border or placeholder text (hint text) if validation fails. These are just some of the options to indicate if text field validation fails. Combine, choose or invent ways to validate text fields in your app!
We have a popup but how do we save the data entered into the modal popup? And when the popup closes, how do we know to reload the data in the table view to show the new data?
In this video you will learn how to do each of these things. You will learn what a callback is in iOS and the 2 steps to implement them. You will also learn how to define a function type in Swift and assign a value (or a function) to it.
In this video we will create a popup in a separate view controller so users can add data. We will refactor the storyboard to move the view controller into its own storyboard file. Then you will learn how to style controls by using subclassing. And when subclassing, you will learn about a few different options of where to put the styling code.
In this tutorial, you will learn how to create a custom button. You will see a few different ways in which we can customize a UIButton through code, an extension and by subclassing the UIButton class. The choice is yours!
In this video you will learn how to create and use and app theme class to hold your app's theme. You will also learn how to add a custom font file to your project and how to assign a custom font to your labels through the theme class that you create.
Want to learn a super easy way to add new code to existing classes without having to sub-class them? Keep watching to learn how to use extensions to add functionality to existing classes and to help organize your code.
What are the basics of the UITableView and how do you create a custom table view cell? In this video we explore these topics. You will learn how to retrieve data and populate table view rows. Then you will learn how to create your own custom cell if you don't like any of the table view cell styles that Apple gives you.
How do you organize your app in a way to make it easy for you? This is answered with app architecture. I won't be teaching any specific architecture but I cover the subject briefly to give you an understanding of its purpose.
Then we will begin modeling our data by making classes to hold it. Then we'll create function templates to create, read, update and delete (CRUD) mock data.
Are you struggling with finding the right colors for your mobile app? Not sure where to begin? Watch this video to learn more about colors and tools that will help you find an appropriate color scheme for your app!
Do you want to give your app a custom look that differentiates it from the rest of the thousands of apps out there? Well, a great way to do this is by changing the default font.
In this video I'm going to give you a simple method to get you started in designing UI (user interface or screens) for mobile apps. We will look at designing them using programs or paper and then I'll actually make some wireframes for the app we are going to build in this series.
In part 3 we will be looking at different ways you can organize your thoughts and ideas in order to get your app built. Writing things down will lead you to organization. Then organizing will lead to action!
You will learn what a minimum viable product is and how we use our tools to separate out what we will and won't do for version one of the app.
In this video we are going to explore what "source control" or "version control" is. We will look at two options for Source Control: GitHub and Bitbucket. We're going to pick one and connect our project to it.
Then we'll also explore the built-in features for source control/version control inside of Xcode 9, view our changes and make commits to our local and remote repositories.
This video is for absolute beginners who are not familiar with source control and may have never connected a project to an external source control provider.
This is the beginning of a series of videos in which we start a project to build an Itinerary app in Xcode using Swift. We will explore the creation process including some project management, managing a code repository, design, icons, coding, and so on.
This is the introductory video that introduces this mini-course of iOS app project management and development. We will be covering a variety of topics that are all included in the process of building an app.
All we will be doing in this video is simply creating a starting project and getting it ready for the next steps. Welcome to the course!
Note: I may create another series afterwards that explores different data sources to plug into this app. Stay tuned and we will see!
Since iOS 11 you now have built-in support to swipe your UITableViewCell right or left and be able to add multiple buttons or "actions" to the cell.
Watch this video to learn how to add swipe actions no matter which way you swipe. I also show you the new way to swipe to delete. You will learn how to change color and add icons as well as enabling or disabling the full swipe feature.
As a bonus, you will also learn why the term "leading" and "trailing" are used instead of "right" and "left" and how to configure your project to simulate a language that reads from right to left.
This video is packed with a lot of good info. You will learn:
* How Swift manages and allocates memory
* How Swift determines when it's ok to remove objects from memory
* Automatic Reference Counting (ARC)
* Dependencies and ARC
* Retain Cycles (Also known as: Retention Cycles or Circular References)
* Strong, Weak and Unowned References
* The Debug Memory Graph tool in Xcode
* Using Instruments Leak profiler to find memory leaks