我需要一个可滚动的CATextLayer来显示NSAttributedString。
有什么方法可以混合两个图层,或向CATextLayer添加滚动条或在CAScrollLayer中显示文本?
很抱歉,如果这个问题不是很确切。
谢谢!
编辑:我还没有看到CALayer是可滚动的。
抱歉!
最佳答案
尝试将其添加到示例中以编程方式滚动图层:
- (void)scroll {
[scrollLayer scrollToPoint:scrollPoint];
scrollPoint.x += 10;
[self performSelector:_cmd withObject:nil afterDelay:0.1];
}
并将其添加到initialize方法的末尾:
scrollPoint = CGPointMake(0, 0);
[self scroll];
关于iphone - 混合CATextLayer和CAScrollLayer,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/8315306/