作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想获取 CGPDFDictionaryRef 的所有键。到目前为止我发现的是from stackoverflow
这是我在 swift 中的代码:
func printPDFKeys(key: UnsafePointer<Int8>, ob: CGPDFObjectRef, info: UnsafeMutablePointer<()>) -> Void{
NSLog("key = %s", key);
//return (key, ob , info)
}
然后像这样调用这个函数。
let myDoc = CGPDFDocumentCreateWithURL(url)
if myDoc != nil {
let myCatalog=CGPDFDocumentGetCatalog(myDoc)
CGPDFDictionaryApplyFunction(myCatalog, printPDFKeys, nil);//Compiler error here
}
但是我收到一个错误
a c function pointer can only be formed from a reference to a 'func' or a literal closure
我也试过像这样使用闭包:
var printPDFKeys: ( UnsafePointer<Int8>, CGPDFObjectRef, UnsafeMutablePointer<()> )-> Void
printPDFKeys={
key,ob,info in
NSLog("key = %s", key);
}
我仍然遇到同样的错误。我该怎么做
最佳答案
正确的闭包语法是:
CGPDFDictionaryApplyFunction(myCatalog, { (key, object, info) -> Void in
// do something
}, nil)
关于ios - 如何获取 CGPDFDictionaryRef 键,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35589516/
我想获取 CGPDFDictionaryRef 的所有键。到目前为止我发现的是from stackoverflow 这是我在 swift 中的代码: func printPDFKeys(key: U
我有一个类型为 CGPDFDictionaryRef 的对象以某种方式从一个被视为静态库一部分的方法返回(因此我无权访问其代码来修改它),但是,我想知道这个字典对象保存的 PDF 文件的名称吗?我如何
我是一名优秀的程序员,十分优秀!