Guest User

Untitled

a guest
Nov 17th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. @interface MyClass
  2.  
  3. @property(assign, nonatomic) MyType type
  4.  
  5. @end
  6.  
  7. typedef NS_ENUM(NSInteger, MyType) {
  8. MyTypeOne = 1,
  9. MyTypeTwo = 2,
  10. MyTypeThree = 3
  11. };
  12.  
  13. if obj.type == .three {
  14. //should be here
  15. } else {
  16. //but it is going through here
  17. }
Add Comment
Please, Sign In to add comment