如何在iPhone应用程序中将背景颜色转换为pdf视图

时间:2012-06-11 09:00:13

标签: iphone xcode uiview

我正在使用以下tutorial创建pdf对我有用

但它显示了pdf的白色背景我想给背景颜色如何做到这一点

我已经看过所有的代码,但是这里没有任何选项可以提供颜色,无论如何都要提供颜色。

2 个答案:

答案 0 :(得分:2)

在while while循环中使用这些代码行.... 这里pdfpageFrame是你的Pdfpage的框架。

CGContextRef currentContext = UIGraphicsGetCurrentContext();
CGContextSetFillColorWithColor(currentContext, [UIColor redColor].CGColor );
CGContextFillRect(currentContext, pdfpageFrame);

答案 1 :(得分:0)

在drawBorder之前,执行以下操作:

  CGContextRef currentContext = UIGraphicsGetCurrentContext();
  CGContextSetFillColorWithColor(currentContext, [UIColor colorWithRed:1.0 green:1.0 blue:0.0 alpha:1.0].CGColor);
  CGContextFillRect(currentContext, pdfpageFrame);