MPMoviePlayerController 를 사용한
오디오 스트리밍 재생
MPMoviePlayerController 를 사용하기 위해 MediaPlayer framework를 프로젝트에 추가 후 예제를 참고하자.
MPMoviePlayerController* moviePlayer = [[MPMoviePlayerController alloc] initWithContentURL: audioURL];
[moviePlayer.view setFrame:CGRectMake()]; // some rect area where you want the audio controls to live
[viewController.view addSubview:moviePlayer.view];
[moviePlayer prepareToPlay];
스트리밍 할 url을 변경하는 경우 아래와 같이 사용하면 된다.
moviePlayer.contentURL = newURL;
[moviePlayer prepareToPlay]; // make sure to call this every time you change the url!
반응형
'Programming > iOS - ObjC' 카테고리의 다른 글
CATransition - UINavigation push animation (0) | 2015.07.09 |
---|---|
UIAlertView - TextField 추가 (0) | 2015.07.09 |
NSString - Base64 Encoding/Decoding (0) | 2015.06.30 |
UISwitch - 상태값 가져오기 (0) | 2014.12.04 |
MPMoviePlayerController - 비디오 재생 (0) | 2014.12.04 |
Email 주소 유효성 검사 (0) | 2014.12.02 |
UIWebView - POST request 사용 및 Header 넣기 (0) | 2014.12.02 |
[Deprecated-iOS7] UITextAttributeTextColor (0) | 2014.12.02 |
[APNs, Notification] 알림 설정 (iOS8 SDK 변화) (0) | 2014.10.16 |
RangeOfString 주의할 점 (0) | 2014.07.23 |