2016-06-08 57 views
0

下午好,更新到Cocoapods 1.0後錯誤太多

更新到最新版本的Cocoapods(1.0)後,我的iOS應用程序顯示了很多錯誤。我因爲在更新的一切我不知道爲什麼會這樣是正確的,但是當我「運行」我的應用程序,它顯示了以下錯誤:

28 issues

這就是我的Podfile:

# 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 'myApp' do 

pod 'HanekeSwift', '~> 0.10' 

pod 'Alamofire', '~> 3.3' 

pod 'SwiftyJSON', '~> 2.3' 

pod 'Batch', '~> 1.5' 

end 

target 'myAppTests' do 

end 

target 'myAppUITests' do 

end 

我能做些什麼來解決這些問題?

非常感謝,

問候。

+1

您可以停止使用CocoaPods並使用Carthage代替。幾個月前做出了改變,從不回頭。 https://github.com/Carthage/Carthage(這裏沒有聯繫) –

回答

1

如果您運行了pod install,但它仍然無法工作。 嘗試pod deintegrate然後pod install。它應該解決這個問題。

0

如果有人遇到同樣的問題,我刪除了舊的Podfile並創建一個新的。現在看起來是這樣的:

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

target 'myApp' do 
    # Comment this line if you're not using Swift and don't want to use dynamic frameworks 
    use_frameworks! 

    # Pods for myApp 
    pod 'Alamofire', '~> 3.4' 
    pod 'SwiftyJSON', '~> 2.3' 
    pod 'HanekeSwift', '~> 0.10' 
    pod 'Batch', '~> 1.5' 

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

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

end