Guest User

Untitled

a guest
Jul 20th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. iTunesApplication * iTunes = [[SBApplication alloc] initWithBundleIdentifier:@"com.apple.iTunes"];
  2. int i = [iTunes currentTrack].id;
  3. if (i==0)
  4. NSLog(@"no track!!!");
  5. else
  6. NSLog(@"track id is: %d", i);
  7. [iTunes release];
  8.  
  9. iTunesApplication * iTunes = [SBApplication applicationWithBundleIdentifier:@"com.apple.iTunes"];
  10. int i = [iTunes currentTrack].id;
  11. if (i==0)
  12. NSLog(@"no track!!!");
  13. else
  14. NSLog(@"track id is: %d", i);
Add Comment
Please, Sign In to add comment