0

这是我的代码

CGContextRef c = UIGraphicsGetCurrentContext();
CGContextBeginPath(c);
CGContextMoveToPoint(c, 277.0f, 21.0f);
CGFloat newpoint = 277.0f + (CGFloat)(self.msrp.text.length * 8);
//NSLog(@"%f", newpoint);
CGContextAddLineToPoint(c, newpoint, 21.0f);
CGContextStrokePath(c);

我试图在 UIlabel 上画一条线,我正在从 nib 加载我的视图。我不知道我在做什么错。如果我绘制整个视图而不是从笔尖加载,我就可以正常工作。(但我不想这样做)..我希望我的问题很清楚..

4

1 回答 1

0

好的,最后我最终继承了 UIlabel。然后将我的代码放在 drawTextInRect 中。

于 2010-04-07T16:39:36.643 回答