Вы можете просто сделать это с помощью NSNotification для вызова вашего tableView.reloadData ():
добавить
NotificationCenter.default.addObserver(self, selector: #selector(reload), name: NSNotification.Name(rawValue: "load"), object: nil)
в таблицу ViewView Controller (TVC) ViewDidLoad
и эта функция для твоего TVC
@objc func reload()
{
//setup ur new data
self.tableView.reloadData()
}
затем просто добавьте
NotificationCenter.default.post(name: NSNotification.Name(rawValue: "load"), object: nil)
перед вами self.dismiss(animated: true, completion: nil)
в вашем распоряжении RewardedVideo Player