我在提出一种模式观点,对内容模式填充表(通过轴心)发出“UIImageView”。 我在模式观察班中设置了UIImage,由家长阶层组成:
NSURL * finishedMovie = [self applicationDocumentsDirectory:@"FinishedVideo.mov"];
MPMoviePlayerController *player = [[MPMoviePlayerController alloc] initWithContentURL:finishedMovie];
UIImage *thumbnail = [player thumbnailImageAtTime:1.0 timeOption:MPMovieTimeOptionNearestKeyFrame];
previewScreen = [[PreviewScreenViewController alloc]initWithNibName:@"PreviewScreenViewController" bundle:nil];
previewScreen.thumbnailImage = thumbnail;
[self presentModalViewController:previewScreen animated:YES];
之后,模式观点本身即:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view from its nib.
previewImageBox.image = thumbnailImage;
}
问题是,在看来,似乎忽视了轴心中确定的内容模式,而只是将图像全数插入。
这似乎是一种丑恶,因为当我回到这一看法时,UIImage的图像是适当的。
谁能帮助?
感谢。