我正在使用显示一些文本的自定义操作表。使用XCode 11.3,我不能使用NSAttributedString.Key.foreground。它以前在更新之前就可以使用,但是现在我找不到解决方案。
Screengrab with example of my problem
public static string EnumSize(this Type type)
{
if (!type.IsEnum)
{
throw new InvalidOperationException("EnumSize only applies to enums");
}
EnumSizeAttribute attribute = type.GetCustomAttribute<EnumSizeAttribute>();
return attribute?.Value.ToString();
}
如果我尝试更改背景色,它也会变成灰色。 也许有人已经遇到了这个问题?