我正在使用以下教程创建 pdf对我有用
但它显示pdf的白色背景我想给背景颜色怎么做
我已经看过所有的代码,但是没有任何选项可以提供颜色,无论如何都可以提供颜色。
在 do while 循环中使用这些代码行.... 这里 pdfpageFrame 是您的 Pdfpage 的框架。
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(currentContext, [UIColor redColor].CGColor );
CGContextFillRect(currentContext, pdfpageFrame);
在drawBorder之前,执行以下操作:
CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(currentContext, [UIColor colorWithRed:1.0 green:1.0 blue:0.0 alpha:1.0].CGColor);
CGContextFillRect(currentContext, pdfpageFrame);