UITableView

With this blog post I am going to share with you how to add inline UIDatePicker or DateCell into your UITableView. Originally the DateCell example was implemented by Apple as an Objective C project and is available for download here: Apple DateCell. I googled around to see if there is already an implementation of DateCell in…

Read More Inline UIDatePicker or DateCell Example in Swift

Loading 1 or 3 images from server side into UITableView might not be a very challenging task. But when it comes to loading 50 or 100 images into a table view or collection view then things start becoming a little more complex. Especially when  user starts scrolling table view up and down very quickly.  When we…

Read More Display Large Collection of Images in UITableView with SDWebImage

In this video tutorial I am going to share with you how to change UITableViewCell separator left side spacing or how to hide table cell separator completely using Xcode and how to do it programmatically using Swift. If you are looking for a way to work with table cell separator programmatically only, below is a quick example. Otherwise, please watch…

Read More UITableViewCell Separator. Hide Separator or Change Left Side Spacing

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

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 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.