Guest User

Untitled

a guest
Jul 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.47 KB | None | 0 0
  1. - (void) openAppInAppStore
  2. {
  3. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"macappstore://itunes.apple.com/us/app/mathemagics/id402458650?mt=12"]];
  4.  
  5. dispatch_time_t delay = dispatch_time(DISPATCH_TIME_NOW, 1 * NSEC_PER_SEC);
  6. dispatch_queue_t main_queue = dispatch_get_main_queue();
  7. dispatch_after(delay, main_queue, ^{
  8. [[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:@"macappstore://itunes.apple.com/us/app/mathemagics/id402458650?mt=12"]];
  9. });
  10. }
Add Comment
Please, Sign In to add comment