I'm new to Xcode and Objective-C, and I'm trying to import github MailCore. InboxListener example Xcode project for Mac OSX. I followed the Mac OSX instructions from the MailCore website , and the project is building, but not starting. MailCore seems to depend on /System/Library/Frameworks/CFNetwork.framework, which is not in my / System / Library / Frameworks / directory on my Mac OS X 10.7.5.
CFNetwork.framework exists in /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks, but why doesn't MailCore know where to find it? How to change the location that MailCore uses?
I tried linking CoreServices.framework and CFNetwork.framework in the build phases, linking to binaries without success. Same runtime error.
Output at startup:
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)

source share