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
Post a Comment