How to add GoogleMaps to an iOS Application?
Steps to follow Step 1: Create a new iOS project in XCode (Single View Application) Step 2: Locate GoogleMaps.Framework and GoogleMaps.bundle from your local system ( if you do not find these files, please download them from Google) Step 3: Drag these two files into your project. Check the box which says "Copy Items..." and click "Finish" Step 4: Go to "Build Phases" under targets and expand "Link Binary With Libraries" Step 5: Click the "+" button to add the following Frameworks AVFoundation.framework CoreData.framework CoreLocation.framework CoreText.framework GLKit.framework ImageIO.framework libc++.dylib libicucore.dylib libz.dylib OpenGLES.framework QuartzCore.framework SystemConfiguration.framework Step 6: Add a new file to your project folder of the type "Objective-C File" and click "Next" button Step 7: Give any name to the file ( Ex- Test) and click "Create") Step 8: No...