gpt4 book ai didi

iphone - CATextLayer 在 iOS7 中的视频中不可见

转载 作者:搜寻专家 更新时间:2023-10-30 19:53:59 24 4
gpt4 key购买 nike

我正在开发一个视频应用程序,该应用程序使用 .mov 资源作为背景并使用 CATextLayer 作为演职员表来生成演职员表剪辑。该代码在 iOS 5 和 6 中有效,但在 iOS 7 中无效 - 即:剪辑已生成但文本未出现。

我已尝试使用此问题答案中的代码 ( How can I add overlay text on a video, then re-encode it? ),但 CATextLayer 中的文本仍未显示。

为什么 iOS 7 的行为不同,我该如何让它工作?

最佳答案

在解决这个问题 2 天后

CATextLayer *text = [CATextLayer layer];
text.string = @"Your Text";
text.frame = CGRectMake(0, 0, 320, 50);
CGFontRef font = CGFontCreateWithFontName((CFStringRef)@"HelveticaNeue-UltraLight");
text.font = font;
text.fontSize = 20;
text.foregroundColor = [UIColor whiteColor].CGColor;
[text display];
[aLayer addSublayer:text];
[aLayer display];

秘诀就是调用[CALayer display]方法

关于iphone - CATextLayer 在 iOS7 中的视频中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19607988/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com