systemFont(ofSize:weight:)
Returns the standard system font with the specified size and weight.
Declaration
class func systemFont(ofSize fontSize: CGFloat, weight: NSFont.Weight) -> NSFontParameters
- fontSize:
The desired font size specified in points. If you specify
0.0or a negative number for this parameter, the method returns the system font at the default size. - weight:
The desired weight of font lines, specified as one of the constants in Weight.
Return Value
A font object containing the system font at the specified size and weight.
Discussion
Use the returned font for standard interface items, including button labels, menu items, and so on that require a specific font style information.