我正在尝试将CATextLayer
添加到UITableViewCell
。问题是当我已经设置了它的backgroundColor时,文本呈现为黑色。有人可以告诉我我想念什么吗?谢谢。
CATextLayer *buyPrice_port = [CATextLayer layer];
buyPrice_port.frame = CGRectMake(144, 42, 76, 21);
buyPrice_port.font = (__bridge CFTypeRef)([UIFont boldSystemFontOfSize:18]);
buyPrice_port.foregroundColor = [UIColor colorWithRed:0 green:190/255.0 blue:191/255.0 alpha:1.0].CGColor;
buyPrice_port.alignmentMode = kCAAlignmentCenter;
buyPrice_port.string = @"BAC";
[self.contentView.layer addSublayer:buyPrice_port];
最佳答案
这个奇怪的问题是由于我设置字体的方式引起的。相反,它应该这样设置:
buyPrice.font = CFBridgingRetain([UIFont boldSystemFontOfSize:18].fontName);
buyPrice.fontSize = 18;
关于ios - CATextLayer文本颜色始终为黑色,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/16331345/