I tried importing the parse framework in my project. I made sure it is liked with my project and I couldn\'t find anything about whether it is \'arc sensitive\' or not. My
Make sure you link against the SystemConfiguration
and the Security
framework in your project. See this question for more details. As Hector pointed out in the comments, all of the required frameworks for Parse can be found in the iOS Quick Start Guide.
Add MobileCoreServices.framework from your project in addition to these frameworks
-Accounts.framework
-AudioToolbox.framework
-CFNetwork.framework
-CoreGraphics.framework
-CoreLocation.framework
-libz.dylib
-MobileCoreServices.framework
-QuartzCore.framework
-Security.framework
-Social.framework
-StoreKit.framework
-SystemConfiguration.framework
I had to add "$(inherited)" to the Framework Search Paths in Build Settings to get it work.