@Patrick you cannot use the AVPlayerStatus objects because its not a class or a structure (or Union). Its an enumerator. we use it for checking a condition where in switch mostly (if we are creating it). The above method suggested by @Amorya is how to use AVPlayerStatus.
Hope this is making sense to you.
Check the documentation.
http://developer.apple.com/library/ios/#documentation/AVFoundation/Reference/AVPlayer_Class/Reference/Reference.html
Edit:
what you are looking for is something like this. I don't think that this will work or it might. but you will get the basic idea.
[yourActivityIndicator startAnimation];
while(yourAVPlayer.status == AVPlayerStatusUnknown) {}
[yourActivityIndicator stopAnimation];
or if you just call the last 2 lines in a custom queue using GCD it will show you what you are looking for.
something like this, (not sure if this the exact syntax )
[yourActivityIndicator startAnimation];
dispatch_queue(^{
while(yourAVPlayer.status == AVPlayerStatusUnknown) {}
[yourActivityIndicator stopAnimation];
});