Skip to content

Instantly share code, notes, and snippets.

@mediter
Created May 19, 2018 09:27
Show Gist options
  • Save mediter/9349e2f42c07d13bbe9d7d132024d663 to your computer and use it in GitHub Desktop.
Save mediter/9349e2f42c07d13bbe9d7d132024d663 to your computer and use it in GitHub Desktop.
[Table View Background] #ios #swift #UITableView
tableView.backgroundColor = UIColor(red:1, green:1, blue:1, alpha:1.00)
let backgroundImageView = UIImageView(frame: view.bounds)
backgroundImageView.image = UIImage(named: "background")
backgroundImageView.alpha = 0.5
tableView.backgroundView = backgroundImageView
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment