let pointSize: CGFloat = 60.0
let systemFontDesc = UIFont.systemFontOfSize(pointSize,
							weight: UIFontWeightLight).fontDescriptor()

let fractionFontDesc = systemFontDesc.fontDescriptorByAddingAttributes(
	[
		UIFontDescriptorFeatureSettingsAttribute:
		[ 
			UIFontFeatureTypeIdentifierKey: kFractionsType,
			UIFontFeatureSelectorIdentifierKey: kDiagonalFractionsSelector,
		],
	]
)

label.font = UIFont(descriptor: fractionFontDesc, size: pointSize)