gpt4 book ai didi

ios - 无法在 Playgrounds 中使用 Alamofire 查找符号错误

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

我正在使用 Playgrounds 并通过 Podfile 安装了 Alamofire 和 SwiftSoup。我可以使用 URLSession 从 URL 中检索 HTML,但希望使用 Alamofire 这样做。我的代码如下。

let url = "https://www.nba.com/warriors/stats"
Alamofire.request(url, method: .post, parameters: nil, encoding: URLEncoding.default).validate(contentType: ["application/x-www-form-urlencoded"]).response { (response) in
if let data = response.data, let _ = String(data: data, encoding: .utf8) {
do {
print(data)
}
}
}

我不确定为什么会收到以下错误。

error: Couldn't lookup symbols:
Alamofire.DataRequest.response(queue: Swift.Optional<__C.OS_dispatch_queue>, completionHandler: (Alamofire.DefaultDataResponse) -> ()) -> Self
protocol witness table for Alamofire.URLEncoding : Alamofire.ParameterEncoding in Alamofire
type metadata accessor for Alamofire.DataRequest
Alamofire.DataRequest.validate<A where A: Swift.Sequence, A.Element == Swift.String>(contentType: A) -> Self
Alamofire.request(_: Alamofire.URLConvertible, method: Alamofire.HTTPMethod, parameters: Swift.Optional<Swift.Dictionary<Swift.String, Any>>, encoding: Alamofire.ParameterEncoding, headers: Swift.Optional<Swift.Dictionary<Swift.String, Swift.String>>) -> Alamofire.DataRequest
protocol witness table for Swift.String : Alamofire.URLConvertible in Alamofire
static Alamofire.URLEncoding.default.getter : Alamofire.URLEncoding
type metadata for Alamofire.URLEncoding

最佳答案

尝试将此添加到您的 Podfile

post_install do |installer|
installer.pods_project.build_configurations.each do |config|
config.build_settings.delete('CODE_SIGNING_ALLOWED')
config.build_settings.delete('CODE_SIGNING_REQUIRED')
end

installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['CONFIGURATION_BUILD_DIR'] = '$PODS_CONFIGURATION_BUILD_DIR'
end
end
end

确保再次运行 pod install 以重新生成 Pods 项目。然后使用 Command-Shift-K 清理构建,使用 Command-B 重建它,然后运行你的 playground。错误应该消失。

来源:https://learnappmaking.com/cocoapods-playground-how-to/

关于ios - 无法在 Playgrounds 中使用 Alamofire 查找符号错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54083285/

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