gpt4 book ai didi

ios - 无法将类型 'CFString' 的值转换为预期的参数类型 'UnsafePointer'(又名 'UnsafePointer<()>')

转载 作者:可可西里 更新时间:2023-11-01 00:08:21 24 4
gpt4 key购买 nike

当我定义行时出现构建错误

 let runFont : CTFontRef = CFDictionaryGetValue(CTRunGetAttributes(run), kCTFontAttributeName)

错误是:无法将“CFString”类型的值转换为预期的参数类型“UnsafePointer”(又名“UnsafePointer<()>”)

最佳答案

尝试

let runFont = unsafeBitCast(CFDictionaryGetValue(CTRunGetAttributes(run), unsafeBitCast(kCTFontAttributeName, UnsafePointer<Void>.self)), CTFontRef.self)

关于ios - 无法将类型 'CFString' 的值转换为预期的参数类型 'UnsafePointer<Void>'(又名 'UnsafePointer<()>'),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36310251/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com