Using Google Maps iOS SDK with Parse.com SDK in the same project
Google Maps iOS SDK recommend to use -ObjC key as one of the Build option in "Other Linker Flags" section. Unfortunately if you already use Parse.com iOS SDK this option makes your project fail. If you will follow instructions and add -ObjC key then you will get something like this error while trying to build Map object:
2015-01-21 20:34:25.030 YourApp[5246:346036] -[NSManagedObject tileCoords]: unrecognized selector sent to instance 0x7b7aeb00 2015-01-21 20:34:25.044 YourApp[5246:346036] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[NSManagedObject tileCoords]: unrecognized selector sent to instance 0x7b7aeb00'
Best solution is change key to -force_load $(PROJECT_DIR)/GoogleMaps.framework/GoogleMaps.









