Guest User

Untitled

a guest
Aug 17th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. What does this gdb output mean?
  2. if (beep == nil)
  3. NSLog(@"audio player not initialized");
  4. else if(TARGET_IPHONE_SIMULATOR)
  5. {
  6. NSLog(@"beep play");
  7. }
  8. else
  9. {
  10. [beep play];
  11. }
  12.  
  13. if (beep == nil)
  14. NSLog(@"audio player not initialized");
  15. else if(TARGET_IPHONE_SIMULATOR)
  16. {
  17. NSLog(@"beep play");
  18. }
  19. else
  20. {
  21. [beep play];
  22. }
Add Comment
Please, Sign In to add comment