Date

Inline UIDatePicker allows you to integrate a date picker directly into your table view cells. In this tutorial, you will learn how to create a simple application that displays a UIDatePicker within a table view cell. Step 1: Setup TableView To begin, you’ll need to set up a UITableView in your view controller. This involves creating an…

Read More Inline UIDatePicker or DateCell Example in Swift

In this tutorial, you will learn how to add days, months or years to the current date in Swift. To work with dates I will use Date(), DateComponents() and Calendar objects. I will first get the today’s current date and then will use the DateComponents() to add to a current date another day, month or…

Read More Add Days, Months, Years to Current Date in Swift