2011-12-15 8 views
0

私はどのヘッダファイルを含めるべきか分かりません。MPMoviePlayerLoadStateDidChangeNotificationにはどのヘッダファイルが必要ですか?

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(loadStateDidChange:) name:MPMoviePlayerLoadStateDidChangeNotification object:nil]; 

エラー:宣言されていない識別子のMPMoviePlayerLoadStateDidChangeNotification

申し訳ありませんが、私は解決策を見つける

#import <MediaPlayer/MediaPlayer.h> 

答えて

1

http://developer.apple.com/library/ios/#documentation/mediaplayer/reference/MPMoviePlayerController_Class/Reference/Reference.html状態ドキュメント(引用符)で右がMPMoviePlayerController.h

MPMoviePlayerLoadStateDidChangeNotification は、オブザーバーに通知ネットorkバッファリング状態が変更されました。影響を受けるムービープレーヤは、通知のオブジェクトパラメータに格納されます。 userInfo辞書はありません。現在のロード状態は、ムービープレーヤコントローラのloadStateプロパティから取得できます。

iOS 3.2以降で使用できます。

MPMoviePlayerController.hで宣言

これらのようなものが;-)

が、ほとんど常に、一度か二度のiOSのdevのセンターで検索を行います
関連する問題