This code might look valid to less experienced iOS developers, but it does give a compiler error "initializer element is not constant":
static NSArray *playState = [NSArray arrayWithObjects:
@"MPMoviePlaybackStateStopped",
@"MPMoviePlaybackStatePlaying",
@"MPMoviePlaybackStatePaused",
@"MPMoviePlaybackStateInterrupted",
@"MPMoviePlaybackStateSeekingForward",
@"MPMoviePlaybackStateSeekingBackward",
nil];