Guest User

Untitled

a guest
May 31st, 2016
18
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.22 KB | None | 0 0
  1. if let _temporary = otherVariable as? String {
  2.  
  3. //do some work
  4.  
  5. } else {
  6.  
  7. //handle this condition
  8. }
  9.  
  10. //_temporary only exists in the scope of the optional binding and cannot be used outside of the optional binding
Add Comment
Please, Sign In to add comment