I tried searching this on SO as well as other sites but I can't find the cause of it.
So I'm running the stock Google Map SDK on my iPhone 6 on iOS 8.1 using Xcode 6.1:
- (void)viewDidLoad {
[super viewDidLoad];
GMSCameraPosition *camera = [GMSCameraPosition cameraWithLatitude:-33.868
longitude:151.2086
zoom:6];
GMSMapView *mapView = [GMSMapView mapWithFrame:CGRectZero camera:camera];
GMSMarker *marker = [[GMSMarker alloc] init];
marker.position = camera.target;
marker.snippet = @"Hello World";
marker.appearAnimation = kGMSMarkerAnimationPop;
marker.map = mapView;
self.view = mapView;
}
I'm not sure exactly what the issue is in regards to the GMSMapView
mapView object.
It's running just fine on my iPhone 5 and iPhone 4 on iOS 7.1
Is it an update compatibility issue to support the iPhone 6 hardware or something?