Guest User

Untitled

a guest
Feb 20th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. .
  2. .
  3. .
  4. -(void)soundDidFinish{
  5. console.log("Sound finished...posting notification...");
  6. [[CPNotificationCenter defaultCenter] postNotificationName:"SongEnded" object:self];
  7. }
  8. -(void)soundPosition{
  9. console.log(song.position);
  10. var info = [[CPDictionary alloc] dictionaryWithObject:song.position forKey:"time"];
  11. [[CPNotificationCenter defaultCenter] postNotificationName:"pos" object:self userInfo:info];
  12. }
  13. .
  14. .
  15. .
Add Comment
Please, Sign In to add comment