在我的Xamarin.IOs项目中,我有一个扩展方法,将标签传递给该扩展方法,
public static void SetBoldRange(this UILabel label, NSRange range)
{
// some code
}
我需要获取TextStyle,
label.Font
如何完成?
我尝试过
label.Font.FontDescriptor.GetObject(new NSString("UIFontDescriptorTextStyleAttribute"));
但这将返回null。