gpt4 book ai didi

swift - 如何通过 cocoa pod 在 Swift 应用程序中添加模块?

转载 作者:行者123 更新时间:2023-11-28 16:15:20 24 4
gpt4 key购买 nike

我试图在我的应用程序中添加一个模块 (SwiftyJSON) 但出现错误。我关注了https://www.raywenderlich.com/97014/use-cocoapods-with-swift在我的 Mac OS 上安装 cocoapod 的教程,它已成功安装。我也成功安装了模块。但是,当我尝试使用 import SwiftyJSON 语句将模块加载到我的 swift 文件中时,出现错误提示 No such module SwiftyJSON

SwiftyJSON 文档:https://github.com/SwiftyJSON/SwiftyJSON#integration

播客文件

platform :ios, '9.0'

target 'ApplePaySwag' do

use_frameworks!

# Pods for ApplePaySwag
pod 'SwiftyJSON'
pod 'AEXML'

target 'ApplePaySwagTests' do
inherit! :search_paths
# Pods for testing
end

end

我错过了什么吗?

最佳答案

1) 尝试使用 use_frameworks!目标外(平台下)2) pods 安装3) 如果导入不起作用,请尝试清理应用程序 (cmd + shift + k)4) 还清除项目中的派生数据 -> xcode -> 窗口 -> 项目 -> 派生数据(删除)

# Uncomment this line to define a global platform for your project
platform :ios, '9.0'

target 'TestingModules' do
use_frameworks!

# Pods for TestingModules
pod 'SwiftyJSON'
pod 'AEXML'

target 'TestingModulesTests' do
inherit! :search_paths
# Pods for testing
end

target 'TestingModulesUITests' do
inherit! :search_paths
# Pods for testing
end

end

关于swift - 如何通过 cocoa pod 在 Swift 应用程序中添加模块?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39151388/

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