I have read several posts here about live streaming video/audio
. Unfortunately it seems that there is not any "good" solution.
I want same functionality for video which is provided SDWebImageView
for images.
Right now, I am using following code:-
NSURL *url=[[NSURL alloc] initWithString:@"http://www.ebookfrenzy.com/ios_book/movie/movie.mov"];
MPMoviePlayerController *moviePlayer=[[MPMoviePlayerController alloc] initWithContentURL:url];
moviePlayer.controlStyle=MPMovieControlStyleDefault;
moviePlayer.shouldAutoplay=YES;
But when I scrolled tableview
, all videos download again and again. So How can I stop that downloading?
Is there any better solution for playing video into UITableView
? Same Facebook, Instagram, and Vine Apps doing?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…