UITableViewVibrantCell на UITableView
Я хотел бы знать, было ли возможно использовать UITableViewVibrantCell на UITableView (не контроллер). Я не могу понять, как это сделать.
Я делаю:
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = self.tableView(tableView, cellForRowAt: indexPath) as! UITableViewVibrantCell
cell.blurEffectStyle = SideMenuManager.default.menuBlurEffectStyle
return cell
}
Мой UIViewController наследуется от UITableViewDataSource и UITableViewDelegate.
Спасибо за помощь:)