ios - Removed pod also removed the associated Framework -


i had podfile looked this:

platform :ios, '6.0' xcodeproj 'netapp.xcodeproj'  pod 'afnetworking' pod 'tttattributedlabel' pod  '[x]' 

decided remove pod '[x]' podfile, ran pod install , pod update. following warnings:

systemconfiguration framework not found in project, or not included in precompiled header.  network reachability functionality not available. mobilecoreservices framework not found in project, or not included in precompiled header. automatic mime type detection when uploading files in multipart requests not available. 

i have tried add frameworks manually both in pods , xcode-projplace. dosn't seem work, , functionality missing.

how can resolve this? possible reinstall pods way?

update

seems wasn't removal of pod caused it. did git revert. when ran pod update (updated afnetworking) warnings came back.

just import header files in projectname-prefix.pch

#ifdef __objc__   ...   #import <systemconfiguration/systemconfiguration.h>   #import <mobilecoreservices/mobilecoreservices.h> #endif 

Comments

Popular posts from this blog

c++ - Function signature as a function template parameter -

algorithm - What are some ways to combine a number of (potentially incompatible) sorted sub-sets of a total set into a (partial) ordering of the total set? -

How to call a javascript function after the page loads with a chrome extension? -