随着 iOS7 的发布,以下功能已被弃用:
drawAtPoint:forWidth:withFont:minFontSize:actualFontSize:lineBreakMode:baselineAdjustment:
在 Apple 的文档中,它建议使用
drawInRect:withAttributes:
我使用这个函数的原因是因为<code>minFontSize</code>
参数,它可以让我在一个矩形内绘制一个字符串。
如果文本不适合,它将首先将文本大小缩小到<code>minFontSize</code>
,然后如果不适合,它将截断它。
到目前为止,我无法使用<code>drawInRect:withAttributes:</code>
.
我可以使用哪个键来确定<code>minFontSize</code>
等效项?