不重新加载/刷新Layer和CATextLayer(iphone)

时间:2013-01-11 06:58:37

标签: objective-c catextlayer

我有图层和CATextLayer。 我有代码,例如:

 CATextLayer *TextLayer = [CATextLayer layer];
        TextLayer.bounds = CGRectMake(0.0f, 0.0f, 245.0f, 290.0f);
        TextLayer.string = randomText;
        CTFontCreateWithName((CFStringRef)@"HelveticaNeue-Light", 0.0, NULL);
        TextLayer.backgroundColor = [UIColor blackColor].CGColor;
        TextLayer.position = CGPointMake(162.0, 250.0f);
        TextLayer.wrapped = YES;
        TextLayer.fontSize = 20;
        [self.view.layer addSublayer:TextLayer];

如何在添加randomText之前重新加载/刷新或清除图层? 目前textRandom在添加文本之前加入(互相拼写现有文本),我什么都没看到。

感谢您的帮助!

0 个答案:

没有答案