我需要将CGPDFPageRef
var 转换为 integer ,我创建一个if
语句来检查 PDF 页面是否小于或大于文件未显示的内容。
- (id) setUpPDF: (int) pageNumber {
//** = I need some integer that automatically detects PDF pages
if ((pageNumber < **) || (pageNumber > **)) return nil;
CFURLRef pdfURL = CFBundleCopyResourceURL(CFBundleGetMainBundle(),
CFSTR("test"),
CFSTR("pdf"), NULL);
myDocumentRef = CGPDFDocumentCreateWithURL(pdfURL);
myPageRef = CGPDFDocumentGetPage(myDocumentRef, pageNumber);