Advertisement
Guest User

Untitled

a guest
Nov 13th, 2017
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.     if (self.currentRating == 5) {
  2.         ....
  3.         [_delegate showThankYou];
  4.  
  5.     } else if (self.currentRating < 4) {
  6.         //Deprecated From GMD-330 remove after release
  7.         [[NSNotificationCenter defaultCenter] postNotificationName:OPEN_SUPPORT_CHAT_NOTIFICATION
  8.                                                             object:nil
  9.                                                           userInfo:@{USER_HAVE_PROBLEMS_KEY : @"bla"}];
  10.        
  11.         [_delegate showThankYou];
  12.     } else {
  13.         [_delegate showThankYou];
  14.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement