gpt4 book ai didi

xcode - 在Xcode中记录设置:Swift 2.0

转载 作者:行者123 更新时间:2023-12-03 01:55:59 25 4
gpt4 key购买 nike

这是我在教程(https://youtu.be/4qj1piMAPE0)中看到的 Swift 2.0 代码。我在第一行得到错误:

Type of expression is ambiguous without more content.


import AVFoundation
import UIKit
...
var recordSettings = [AVFormatIDKey: kAudioFormatAppleLossless,
AVEncoderAudioQualityKey: AVAudioQuality.Max.rawValue,
AVEncoderBitRateKey: 320000,
AVNumberOfChannelsKey: 2,
AVSampleRateKey: 44100.0]

最佳答案

你可以试试:

var recordSettings : [String : Any] =
[
AVFormatIDKey: kAudioFormatMPEG4AAC,
AVEncoderAudioQualityKey : AVAudioQuality.Max.rawValue,
AVEncoderBitRateKey : 320000,
AVNumberOfChannelsKey: 2,
AVSampleRateKey : 44100.0
]

关于xcode - 在Xcode中记录设置:Swift 2.0,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35565462/

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