ios uilabel 尾部截断尾随点颜色

ios uilabel tail truncated trailing dot color

不确定以前是否有人问过这个问题。

我得到一个 UILabel,它是紫色背景上的白色文本。

我注意到尾部截断 ... 不是白色而是灰色。

有没有办法将颜色更改为白色,以匹配 UILabel 文本颜色?

这应该有效

UIColor *color = [UIColor whiteColor];

NSAttributedString *text = [[NSAttributedString alloc] initWithString:self.text attributes:@{ NSForegroundColorAttributeName : color }];

self.label.attributedText = text;