我有一张照片,我正在把电视直播频道放入一个表格。 我正在使用<条码>MPMoviePlayerViewController。 我确实在我的头盔档案中宣布了我的<代码>MPMoviePlayerViewController,并在我的执行档案中加以综合。
我的看法 DidAppear:
- (void)viewDidAppear:(BOOL)animated
{
NSURL *movieURL = [[NSURL alloc]initWithString:@"http://mysuperURL"];
moviePlayerController = [[MPMoviePlayerViewController alloc] initWithContentURL:movieURL];
[self checkIt];
}
我的检查 其职能
- (void) checkIt {
if ([[moviePlayerController moviePlayer] loadState] == MPMovieLoadStateUnknown) { // before you wreck yourself
[NSTimer scheduledTimerWithTimeInterval:0.1 target:self selector:@selector(checkIt) userInfo:nil repeats:NO];
} else {
[moviePlayerController setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[self presentModalViewController:moviePlayerController animated:YES];
}
}
www.un.org/Depts/DGACM/index_spanish.htm 然而,在两秒之后的录像冻结和回答的信号。