Я хотел бы знать, возможно ли использовать 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.
Спасибо за вашу помощь:)