作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
- (void)displayThumbnail
{
AVURLAsset *asset = [[AVURLAsset alloc] initWithURL:[self outputURL] options:nil];
AVAssetImageGenerator *gen = [[AVAssetImageGenerator alloc] initWithAsset:asset];
gen.appliesPreferredTrackTransform = YES;
CMTime time = CMTimeMakeWithSeconds(1, 30);
NSError *error = nil;
CMTime actualTime;
CGImageRef imageref = [gen copyCGImageAtTime:time actualTime:&actualTime error:&error];
UIImage *thumbnail = [[UIImage alloc] initWithCGImage:imageref];
CGImageRelease(imageref);
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
MainViewController *controller = [mainStoryboard instantiateViewControllerWithIdentifier:@"MainViewController"];
controller.imageView.image = thumbnail;
}
我试图在另一个 View Controller 中显示录制视频的缩略图,但没有显示任何内容。我错过了什么吗?
最佳答案
在MainViewController.h中获取UIImage类型的属性
@property(strong,nonatomic) UIImage* thumbnailImg;
在 MainViewController.m 中
self.imageView.image = self.thumbnailImg;
设置这个属性
[controller setThumbnailImg: thumbnail]
关于ios - 无法在另一个 View Controller 中显示缩略图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30750586/
我有一个具有可变数量子元素的固定大小的 div。我不知道 children 的大小。目标是缩小它们以适合父级。 例子: .parent { width: 100px; height: 100p
我是一名优秀的程序员,十分优秀!