如何解决"类型名称的预期标识符"由CryptoSwift添加引起的

时间:2017-09-13 07:30:00

标签: ios swift xcode cocoapods cryptoswift

我有一个代码库,我通过pod添加CryptoSwift,在添加它之后,编译器已经开始抛出20多种类型的错误

  

类型名称的预期标识符

我的PodFile看起来像这样

source 'https://github.com/CocoaPods/Specs.git'

platform :ios, '8.0'
use_frameworks!
target 'TestApp' do
    pod 'AWSIoT'
    pod 'Fabric'
    pod 'Digits'
    pod 'Crashlytics'
    pod 'PureLayout'
    pod 'Amplitude-iOS', '~> 3.11.1'
    pod 'SDWebImage', '~>3.8'
    pod 'CryptoSwift'
    pod 'AWSCognitoIdentityProvider', '~> 2.5.0'
    pod 'AWSAPIGateway', '~> 2.5.0'
    pod 'AWSS3', '~> 2.5.0'
    pod 'PhoneNumberKit', '~> 1.3'
    pod 'ReachabilitySwift', '~> 3'
    pod 'libPhoneNumber-iOS', '~> 0.8'
    pod 'SVProgressHUD'
    pod 'Kingfisher', '~> 3.0'
    pod 'AwesomeCache', '~> 5.0'
    pod 'OHHTTPStubs/Swift'
    pod 'SwiftyGif'

end

target 'TestAppRecents' do
    pod 'AWSIoT'
    pod 'Fabric'
    pod 'Digits'
    pod 'CryptoSwift'
end

target ‘TestAppTests’ do
    pod 'AWSIoT'
    pod 'Fabric'
    pod 'Digits'
    pod 'Crashlytics'
    pod 'PureLayout'
    pod 'Amplitude-iOS', '~> 3.11.1'
    pod 'SDWebImage', '~>3.8'
    pod 'AWSCognitoIdentityProvider', '~> 2.5.0'
    pod 'AWSAPIGateway', '~> 2.5.0'
    pod 'AWSS3', '~> 2.5.0'
    pod 'PhoneNumberKit', '~> 1.3'
    pod 'ReachabilitySwift', '~> 3'
    pod 'libPhoneNumber-iOS', '~> 0.8'
    pod 'SVProgressHUD'
    pod 'Kingfisher', '~> 3.0'
    pod 'AwesomeCache', '~> 5.0'
    pod 'OHHTTPStubs/Swift'
    pod 'SwiftyGif'
end

Pod安装得很好我已添加文件指出我是否有任何冲突 这是附加信息

enter image description here

0 个答案:

没有答案