0
我使用柱狀圖在我面臨的折舊問題,「sizeWithFont」我不知道更換code..please幫助我克服這個問題大小與字體棄用
for (NSString *label in _barLabels)
{
CGSize labelSize = [label sizeWithFont:self.xLabelFont];
CGFloat labelHeightWithAngle = sin(DEGREES_TO_RADIANS(_xLabelRotation)) * labelSize.width;
if (labelSize.height > labelHeightWithAngle)
{
_xLabelMaxHeight = MAX(_xLabelMaxHeight, labelSize.height);
}
else
{
_xLabelMaxHeight = MAX(_xLabelMaxHeight, labelHeightWithAngle);
}
}
好的答案與探索 –
@ Anbu.Karthik謝謝。 – BHUMICA