-8
A
回答
0
1)低效的方式:如果你想同時播放所有媒體。 媒體播放器的網格視圖。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath { UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:CollectionCell forIndexPath:indexPath]; // get URL Player *mediaPlayer = [[self playerArray]objectAtIndex:indexPath.row]; NSURL* videoURL = [NSURL URLWithString:mediaPlayer.url]; MPMoviePlayerController* mPlayer = [[MPMoviePlayerController alloc] initWithContentURL:videoURL]; [mPlayer prepareToPlay]; [mPlayer play]; //For viewing partially..... [mPlayer.view setFrame:CGRectMake(/*Your frame*/)]; [mPlayer.view.backgroundColor = [UIColor grayColor]; [cell addSubview:mPlayer.view]; return cell; }
2)高效的方式:將用縮略圖的網格,當用戶點擊一個單元格(在這種情況下,發生在didSelectRow上面的代碼)
相關問題
- 1. 如何在我的iPhone應用程序中啓動YouTube視頻?
- 2. iphone視頻應用程序
- 3. 如何在iphone應用程序中同步音頻和視頻
- 4. 在iPhone應用程序中播放視頻庫中的視頻
- 5. iPhone應用程序中的視頻
- 6. 畫在iPhone應用程序的視頻
- 7. 如何在iPhone應用程序中壓縮錄製的視頻
- 8. 視頻廣告在iPhone應用程序?
- 9. 如何在iphone應用程序代碼中運行FLV視頻?
- 10. 如何在iPhone應用程序中播放YouTube視頻?
- 11. 我可以在iPhone應用程序中搜索YouTube視頻嗎?
- 12. 尋找iphone應用程序的視頻
- 13. iphone應用程序重疊問題
- 14. 如何在我的iPhone應用程序中實現視頻聊天
- 15. 我在iPhone上運行的應用程序的錄像視頻
- 16. 如何閱讀iPhone應用程序中的Flash視頻
- 17. 加載youtube視頻在我的phonegap iphone應用程序
- 18. 如何在我的android應用程序中播放管視頻
- 19. 如何在我的應用程序中播放vimeo視頻?
- 20. 如何在我的Android應用程序中播放FLV視頻
- 21. 如何在我的應用程序中播放視頻
- 22. 如何在視頻Web應用程序中存儲視頻
- 23. 如何在應用程序中錄製視頻視頻
- 24. iPhone視頻流應用程序
- 25. 如何在You Tube上分享iPhone應用程序視頻?
- 26. 如何從HTP網址在iPhone應用程序播放視頻
- 27. iphone應用程序:僅在小視圖中播放視頻
- 28. iOS中的視頻重疊
- 29. iPhone - 在我的iPhone應用程序中重複使用TableViewCells
- 30. 如何在iPhone應用程序中顯示閃存中的流式視頻
所以更換的UIImageView媒體播放器對象...你嘗試過什麼? – duskwuff