Last active
April 17, 2018 03:55
-
-
Save reloni/62a09f0e67631f62e38b5a3566e0f6bf to your computer and use it in GitHub Desktop.
Add blur to UITableView (Swift 3)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| tableView.backgroundColor = UIColor.clear() | |
| let blurEffect = UIBlurEffect(style: .light) | |
| let blurEffectView = UIVisualEffectView(effect: blurEffect) | |
| tableView.backgroundView = blurEffectView |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!