答案 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);