为什么UIFont在大小设置为零时错误地打印出字体名称? 当我将大小设置为大于零的任何值时,则输出正确的字体名称。这种行为背后是否存在特殊原因,或者这是一个真正的错误。
UIFont* f1 = [UIFont fontWithName:@"HelveticaNeue-Thin" size:0];
NSLog(@"%@",f1);
UIFont* f2 = [UIFont fontWithName:@"HelveticaNeue-Thin" size:1];
NSLog(@"%@",f2);
输出:
<UICTFont: 0x7fb90c988e10> font-family: "Helvetica"; font-weight: normal; font-style: normal; font-size: 0.00pt
<UICTFont: 0x7fad92177a90> font-family: "HelveticaNeue-Thin"; font-weight: normal; font-style: normal; font-size: 1.00pt
答案 0 :(得分:2)