Guest User

Untitled

a guest
Feb 17th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. // Only for Int raw values
  2. class Thread: Object {
  3. @objc dynamic var state: State = .ready
  4. }
  5.  
  6. @objc enum State: Int {
  7. case ready
  8. case running
  9. case waiting
  10. }
Add Comment
Please, Sign In to add comment