Here's my stuff:
Code:
MPMoviePlayerController* video = ...
Now, as you suggested:
Code:
NSLog(@"%@", [[video currentTime] description]);
This throws an EXC_BAD_ACCESS, my guess is because the method actually returns a primitive type, rather than an NSObject.
If I just do
Code:
NSLog(@"%@", [video currentTime]);
I also get an EXC_BAD_ACCESS
Now, if I do
Code:
NSLog(@"%.2f", [video currentTime]);
I get "0.00" printed out.
Now the question is, why does it print 0.00 rather than the actual currentTime?