无法在 Swift 中导入 ObjectMapper
Cannot import ObjectMapper in Swift
我需要将 JSON 反序列化为对象,我认为使用 ObjectMapper 会很棒。
很遗憾,无法导入对象映射器。我收到消息:
No such module 'ObjectMapper'
这是我的播客文件
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'OTTSwift' do
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
use_frameworks!
pod "EVReflection", '~> 2.6'
use_frameworks!
pod 'ObjectMapper', '~> 1.0'
end
我什至尝试了 Git 导入,但它不起作用
我使用了它并且 XCode 在 import 语句中向我显示了同样的错误,但是如果你构建你的项目,它会构建得很好。似乎 XCode 需要一些时间来缓存新的更改,因为在下次导入时它不会显示任何错误。
我在删除项目的派生数据时总是遇到这个问题,我通过使用 pod update
更新依赖项、清理项目并重新启动 Xcode.[=11= 来修复它]
我需要将 JSON 反序列化为对象,我认为使用 ObjectMapper 会很棒。
很遗憾,无法导入对象映射器。我收到消息:
No such module 'ObjectMapper'
这是我的播客文件
# Uncomment this line to define a global platform for your project
platform :ios, '8.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'OTTSwift' do
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
use_frameworks!
pod 'Alamofire', '~> 3.0'
use_frameworks!
pod "EVReflection", '~> 2.6'
use_frameworks!
pod 'ObjectMapper', '~> 1.0'
end
我什至尝试了 Git 导入,但它不起作用
我使用了它并且 XCode 在 import 语句中向我显示了同样的错误,但是如果你构建你的项目,它会构建得很好。似乎 XCode 需要一些时间来缓存新的更改,因为在下次导入时它不会显示任何错误。
我在删除项目的派生数据时总是遇到这个问题,我通过使用 pod update
更新依赖项、清理项目并重新启动 Xcode.[=11= 来修复它]