本文介绍了在Swift中与UnsafePointer(AUPreset)一起使用CFArrayGetValueAtIndex的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我的问题很简单,但很棘手。我要写这行

My problem is simple, but tricky. I want to write this line

AUPreset *aPreset = (AUPreset*)CFArrayGetValueAtIndex(mEQPresetsArray, indexPath.row);

在Swift中。诀窍是返回值是 UnsafePointer< Void>

in Swift. The trick is that the return value is UnsafePointer<Void>.

推荐答案

您是否尝试过?

    let aPreset = UnsafePointer<AUPreset>(CFArrayGetValueAtIndex(mEQPresetsArray, indexPath.row))

这篇关于在Swift中与UnsafePointer(AUPreset)一起使用CFArrayGetValueAtIndex的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

09-14 08:14