XCTest中的Alamofire cocoapod集成问题

时间:2016-07-19 12:22:20

标签: ios xcode cocoapods alamofire xctest

我已经在我的ios项目中集成了Alamofire。虽然我正在使用XCTest(UITest)测试我的应用程序,但我得到了以下问题。我已经google搜索并尝试了所有解决方案。但没有获得解决方案.Plesae帮我解决了这个问题

  

未加载库:@ rpath / Alamofire.framework / Alamofire引用自:/ private / var / mobile / Containers / Bundle / Application / DA4702F0-6A4C-4EB6-99D0-255ABB6E3F57 / Real Estate.app/Real Estate原因:找不到图像Dyld版本:353.12

这是我的podfile。

  

目标' FreshBoss'做     use_frameworks!

FreshBoss的#Pods

pod' Alamofire','〜> 3.4'

pod' MBProgressHUD','〜> 0.9.2'

pod' Google / SignIn'

目标' FreshBossTests'做

inherit! :search_paths
# Pods for testing

pod' Alamofire','〜> 3.4'

pod' MBProgressHUD','〜> 0.9.2'

pod' Google / SignIn'

目标' FreshBossUITests'做

inherit! :search_paths

# Pods for testing

pod' Alamofire','〜> 3.4'

pod' MBProgressHUD','〜> 0.9.2'

pod' Google / SignIn'

1 个答案:

答案 0 :(得分:0)

嵌入Pods框架就是这个原因.UITest - > Buildphases - > Embed Pods框架丢失。从目标复制并将其粘贴到UITest目标中。它对我有用。