April 2017
Intermediate to advanced
316 pages
9h 33m
English
The user will be able to list Todo items from the backend, toggle to mark an item as complete, or swipe left to access functionalities such as Details and Delete.
Our application will look as shown in the following screenshots:


We can design these screens in the storyboard. We will need to implement a custom UITableViewCell as shown here to be able to show the proper data on TableView:
import UIKit class TodoTableViewCell: UITableViewCell { var todo: Todo? { didSet { updateUI() } } var attributedText: NSAttributedString { guard ...Read now
Unlock full access