iOS - 创建分页的pdf

时间:2012-06-11 12:07:26

标签: ios xcode pdf

以下代码来自iOS开发中心:http://developer.apple.com/library/ios/#documentation/2ddrawing/conceptual/drawingprintingios/GeneratingPDF/GeneratingPDF.html

问题是,事情似乎很乱。例如,它在声明这些参数之前引用“Context”和“currentRange”。任何人都能做出这样的头或尾吗?也许我应该在其他地方声明那些,比如“UIGraphicsBeginPDFPage”函数?我知道你需要在你的.m文件中加上“#import”。

- (CFRange)renderPage:(NSInteger)pageNum withTextRange:(CFRange)currentRangeandFramesetter:(CTFramesetterRef)framesetter
{
// Get the graphics context.
CGContextRef    currentContext = UIGraphicsGetCurrentContext();

// Put the text matrix into a known state. This ensures
// that no old scaling factors are left in place.
CGContextSetTextMatrix(Context, CGAffineTransformIdentity);

// Create a path object to enclose the text. Use 72 point
// margins all around the text.
CGRect    frameRect = CGRectMake(72, 72, 468, 648);
CGMutablePathRef framePath = CGPathCreateMutable();
CGPathAddRect(framePath, NULL, frameRect);

// Get the frame that will do the rendering.
// The currentRange variable specifies only the starting point. The framesetter
// lays out as much text as will fit into the frame.
CTFrameRef frameRef = CTFramesetterCreateFrame(framesetter, currentRange, framePath, NULL);
CGPathRelease(framePath);

// Core Text draws from the bottom-left corner up, so flip
// the current transform prior to drawing.
CGContextTranslateCTM(currentContext, 0, 792);
CGContextScaleCTM(currentContext, 1.0, -1.0);

// Draw the frame.
CTFrameDraw(frameRef, currentContext);

// Update the current range based on what was drawn.
currentRange = CTFrameGetVisibleStringRange(frameRef);
currentRange.location += currentRange.length;
currentRange.length = 0;
CFRelease(frameRef);

return currentRange;
}

- (void)drawPageNumber:(NSInteger)pageNum
{
NSString* pageString = [NSString stringWithFormat:@"Page %d", pageNum];
UIFont* theFont = [UIFont systemFontOfSize:12];
CGSize maxSize = CGSizeMake(612, 72);

CGSize pageStringSize = [pageString sizeWithFont:theFont
                               constrainedToSize:maxSize
                                   lineBreakMode:UILineBreakModeClip];
CGRect stringRect = CGRectMake(((612.0 - pageStringSize.width) / 2.0),
                               720.0 + ((72.0 - pageStringSize.height) / 2.0) ,
                               pageStringSize.width,
                               pageStringSize.height);

[pageString drawInRect:stringRect withFont:theFont];
}

1 个答案:

答案 0 :(得分:1)

currentRange是该方法的参数。看起来你在那里丢失了一个空格:currentRangeandFramesetter应该是currentRange andFramesetter

Context是拼写错误,应为currentContext。除此之外,代码编译。