I'm developing a pdf parser in swift, so i've stumbled upon the function CGPDFScannerPopString which takes a CGPDFScannerRef and an UnsafeMutablePointer?
The Objective C code looks like this:
CGPDFStringRef pdfString;
CGPDFScannerPopString(pdfScanner, &pdfString);
How do I write this in swift 3?