我正在生成一个具有特定格式的pdf,我在下面的代码的帮助下放置了一个矩形框...
CGContextRef context = UIGraphicsGetCurrentContext();
CGPathRef path = CGPathCreateWithRect(CGRectMake(40, rectPosition, 540, 150), NULL);
[[UIColor whiteColor] setFill];
//[[UIColor blackColor] setStroke];
CGContextAddPath(context, path);
CGContextDrawPath(context, kCGPathFillStroke);
CGPathRelease(path);
我实现了它,但现在我想在矩形内部设置文本,我尝试了drawRect
方法和其他许多方法......如果有人知道的话,请提供帮助。
答案 0 :(得分:0)
- (void)drawText:(CGFloat)xPosition yPosition:(CGFloat)yPosition canvasWidth:(CGFloat)canvasWidth canvasHeight:(CGFloat)canvasHeight
{
//Here you Can Write whatever you want to add in the rectangle
}