2013-05-04 58 views
1

我有一個podfile看起來像這樣:刪除吊艙還刪除了相關的框架

platform :ios, '6.0' 
xcodeproj 'NetApp.xcodeproj' 

pod 'AFNetworking' 
pod 'TTTAttributedLabel' 
pod '[x]' 

決定從我podfile刪除pod '[x]',然後我跑pod installpod update。但現在我得到以下警告:

SystemConfiguration framework not found in project, or not included in precompiled header. Network reachability functionality will not be available. 
MobileCoreServices framework not found in project, or not included in precompiled header. Automatic MIME type detection when uploading files in multipart requests will not be available. 

我試圖在這兩個吊艙和我Xcode-projplace手動添加的框架。但它似乎不起作用,並且缺少一些功能。

我怎樣才能解決這個問題?是否有可能以某種方式重新安裝所有豆莢?

更新

好像它不是導致它去除吊艙。做了git revert。但是當我跑pod update(更新AFNetworking)警告回來了。

回答

5

方法導入頭文件PROJECTNAME-Prefix.pch

#ifdef __OBJC__ 
    ... 
    #import <SystemConfiguration/SystemConfiguration.h> 
    #import <MobileCoreServices/MobileCoreServices.h> 
#endif