I am a beginning developer in Swift, and I am creating a basic app that includes a UITableView. I want to refresh a certain row of the table using:
self.tableView.reloadRowsAtIndexPaths(paths, withRowAnimation: UITableViewRowAnimation.none)
and I want the row that will be refreshed to be from an Int named rowNumber
The problem is, I don't know how to do this and all the threads I've searched are for Obj-C
Any ideas?