原文:http://www.docin.com/p-721844449.html
UIFont *font = [UIFont fontWithName:@"PingFangSC-Regular"size:15.f] ?: [UIFont systemFontOfSize:14.f];
CGFloat ascender = font.ascender;
CGFloat descender = font.descender;
CGFloat pointSize = font.pointSize;
CGFloat lineHeight = font.lineHeight;
CGFloat capHeight = font.capHeight;
CGFloat xHeight = font.xHeight;
CGFloat leading = font.leading;