An extension of UITableView/UICollectionView's super class, it will display a placeholder emptyDataSet when the data of tableView/collectionView is empty.
Then set title and Description
titleForEmptyDataSet = "No Job"
descripitonForEmptyDataSet = "Tap + to create a new job"
This works perfectly as it should. However when I add a new "job" (a cell to the tableView)
the "No Job Tap + to create a new job" still shows on my tableView.
How do I remove this once there is data to show on the tableView?
I call the delegates
Then set title and Description titleForEmptyDataSet = "No Job" descripitonForEmptyDataSet = "Tap + to create a new job"
This works perfectly as it should. However when I add a new "job" (a cell to the tableView) the "No Job Tap + to create a new job" still shows on my tableView.
How do I remove this once there is data to show on the tableView?