Advertisement
Guest User

Untitled

a guest
Aug 27th, 2015
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. func segmentedControlTouchUpInside(sender: AnyObject) {
  2. UIView.animateWithDuration(0.3, delay: 0, options: UIViewAnimationOptions.CurveEaseOut, animations: { () -> Void in
  3. self.tableView.alpha = 1
  4. self.visualEffectView.alpha = 1
  5. }, completion: { (success) -> Void in
  6. self.tableView.hidden = false
  7. self.visualEffectView.hidden = false
  8. })
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement