我想在 Swift 中创建一些 PDF 页面。
这是我创建 PDF 页面的代码
// Initialize context and other stuff
CGPDFContextBeginPage(pdfContext, aDictionary);
CGContextDrawPDFPage(pdfContext, pdfPageRef)
CGPDFContextEndPage(pdfContext)
我对“aDictionary”变量有疑问。我想在 kCGPDFContextMediaBox 键下添加媒体框(它是 CGRect 类型变量)值。该文档告诉我以下内容:
The media box for the document or for a given page. This key is optional. If present, the value of this key must be a CFData object that contains a CGRect (stored by value, not by reference).
在 Objective-c 中,从 CGRect 创建 CFData 相当容易,但在 Swift 中我不知道如何创建它。这是我的objective-c代码:
CGRect mediaBox = CGRectZero;
CFDataCreate(kCFAllocatorDefault, (const UInt8 *)&mediaBox, sizeof(mediaBox));
Swift 变体应该是什么?
假设我以某种方式创建了一个 CFData 对象,下一个“困难”步骤是将其添加到 CFDictionary。这是我尝试过的方法:
let pageDictionary = CFDictionaryCreateMutable(nil, 0, nil, nil);
CFDictionarySetValue(pageDictionary, key: &kCGPDFContextMediaBox, value: data);
对于这两行,我收到以下错误:CFString is not convertible to '@lvalue inout $T3'
您有什么线索可以解决这两个错误吗?