Skip to content

Instantly share code, notes, and snippets.

@reloni
Last active April 17, 2018 03:55
Show Gist options
  • Save reloni/62a09f0e67631f62e38b5a3566e0f6bf to your computer and use it in GitHub Desktop.
Save reloni/62a09f0e67631f62e38b5a3566e0f6bf to your computer and use it in GitHub Desktop.
Add blur to UITableView (Swift 3)
tableView.backgroundColor = UIColor.clear()
let blurEffect = UIBlurEffect(style: .light)
let blurEffectView = UIVisualEffectView(effect: blurEffect)
tableView.backgroundView = blurEffectView
@hemangshah
Copy link

Thanks!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment