In this blog post I am going to share with you how to add an international language support to your iOS App. In this blog post I will cover how to: Localize App’s Main.storyboard Localize App’s resources like images Localize user-facing that can be displayed to a user by your app. Localize App’s Main.storyboard In this video…

Read More iOS Localization: Add International Language Support To Your Swift App

It’s been several month now since I have published my video course on Udemy about “How to create user Sign in, Sign up, Password reset, Email verification, Push notifications and other vital for our mobile app features with Swift and Parse“. Since then I have received so many messages from students who took the course as well…

Read More Loading user data from another custom Class in Parse with Swift

In one of my previous blog posts I have shared with you how to send information forward from one view controller to another. If you have missed it please click on the link above to read it. In this blog post I am going to share with you how to pass data back to the…

Read More Pass Information Back to the Previous View Controller. Example in Swift.

Time flies! It’s been one year since I have started this blog and it still feels like it was just yesterday! I did not notice how the year went by because I have been extremely busy working on producing as much value as possible for you my friends. I have recorded almost 300 videos, two…

Read More One Year Anniversary and My Top 100 iOS Dev Blogs Award!

Hi there! It’s been an amazing year! Thank you very much for reading my blog and sending me your messages and questions. I feel happy and engaged and busy and this year additionally to video tutorials, I will be writing short blog posts with code examples and even more than that :). Some of the…

Read More Please check out my mini book and please share with me your feedback.

To learn how to pass data back to the previous view controller read this blog post. To illustrate how to pass information forward from one view controller to another view controller in Swift, I will create a project with two views on the Main.storyboard. Let’s follow these steps: Create a new Xcode project if do…

Read More Pass Information Forward From One ViewController to Another in Swift

In this blog post I am going to show you how to create a very useful application template which uses NavigationDrawer(sometimes called as hamburger or side menu) and UITabBarController. This is how our application will look when we are done with this tutorial: Picture 1 As usual I will record a video tutorial and this…

Read More Mobile App with UITabBarController + Sliding Side Menus

In this blog post I am going to share with you how to create and customize UITextView. We will learn how to create UITextView using Xcode Interface Designer as well as how to create and customize UITextView programatically in our Swift code. Some of the things that I will cover in these four videos are:…

Read More UITextView and UITextViewDelegate example in Swift

In these two videos we will learn how to create UIDatePicker, read date selected by user and display selected date in different user friendly formats. We will also learn how to convert NSDate to milliseconds and back. Create UIDatePicker Convert NSDate into milliseconds and back Source code: import UIKit class ViewController: UIViewController { @IBOutlet weak…

Read More UIDatePicker example in Swift

In this video tutorial I am going to share with you how to create a UISegmentedControl with three tabs which will allow user to switch between three different list of elements: Private, Protected and Public. List of items displayed in each tab is loaded from a remote PHP script. I will include the source of PHP…

Read More UISegmentedControl with UITableView example in Swift. Part 2.

In this video tutorial I am going to share with you how to create a UISegmentedControl with three tabs which will allow user to switch between three different list of elements: Private, Protected and Public. The list of elements displayed in each tab is stored in an Array created within the same UIViewController. If you would…

Read More UISegmentedControl with UITableView example in Swift. Part 1.

Not a while ago I created a video course on Swift Programming with Parse: Practical Examples, which covers features like: User Sign up, Sign in, Sign out, Email verification, Password reset and many other useful features. Thanks to all who have enrolled into this course and thank you for all of your messages and kind word.…

Read More iOS Push Notifications with Swift and Parse

In this video tutorial I am going to share with you how to create and use UICollectionView in Swift. Here is what we are going to cover: Create a new UIViewController with UICollectionView Implement custom UICollectionViewCell Load list of images by calling a server side PHP script which will return a JSON array of images Display…

Read More UICollectionView example in Swift