Skip to content

Instantly share code, notes, and snippets.

@Kievkao
Created January 5, 2016 14:08
Show Gist options
  • Select an option

  • Save Kievkao/5ecf62bd39ede3d4f010 to your computer and use it in GitHub Desktop.

Select an option

Save Kievkao/5ecf62bd39ede3d4f010 to your computer and use it in GitHub Desktop.
Blurred tableView background
func backgroundBlurSetup() {
// for clear background also need to set a modal segue to this controller into "OverCurrentContext"
self.view.backgroundColor = UIColor.clearColor()
let blurEffect = UIBlurEffect(style: .Light)
let effectView = UIVisualEffectView(effect: blurEffect)
effectView.frame = self.view.frame
self.tableView.backgroundView = effectView
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment