I'm new to Xcode and Objective C development and I'm attempting to import the github MailCore InboxListener example Xcode project for the Mac OSX environment. I followed the Mac OSX instructions from MailCore's website and the project builds but doesn't run. MailCore seems dependent on /System/Library/Frameworks/CFNetwork.framework which doesn't exist in my /System/Library/Frameworks/ directory on my Mac OS X 10.7.5.
CFNetwork.framework does exist in /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks, but why doesn't MailCore know where to find it? How do I change the location MailCore is using?
I've tried linking CoreServices.framework and CFNetwork.framework in the Build Phases, link with binaries without success. Same runtime error.
Output when Running:
dyld: Library not loaded: /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
Referenced from: /Users/cgray/Library/Developer/Xcode/DerivedData/InboxLister-hjoeknampqddvifxyoqwhozaricj/Build/Products/Debug/MailCore.framework/Versions/A/MailCore
Reason: image not found
(lldb)

