Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

MKMapView showing blank screen in iOS 8

I am having an issue with displaying a MKMapView in iOS 8.

It worked fine in iOS 7 and it is working fine now but only on simulator.

On device it shows only annotations but no map behind.

It looks like this: http://imgur.com/rBVWTeD

The error that I am getting:

2014-09-24 22:07:15.349 xxx[1509:265380] Stylesheet does not include style matching tree, or includes an old version.  Perhaps it was compiled by an old version of the style compiler.
2014-09-24 22:07:15.351 xxx[1509:265380] Please create a radar about this! (Check it's not a dup of rdar://16346611 first though)
2014-09-24 22:07:15.351 xxx[1509:265380] Active tile set: GEOActiveTileSet

My code:

    CLLocationCoordinate2D coord = CLLocationCoordinate2DMake(21.779998, 59.447816);

    MKCoordinateSpan span = MKCoordinateSpanMake(0.007, 0.007);
    MKCoordinateRegion region = {coord, span};

    MKPointAnnotation *annotation = [[MKPointAnnotation alloc] init];
    [annotation setCoordinate:coord];
    [annotation setTitle:@"yyy"];

    [self.cell.myMapView setRegion:region];
    [self.cell.myMapView addAnnotation:annotation];
    [self.cell.myMapView setDelegate:self];

Thanks in advance!

like image 232
Peterek Avatar asked Sep 25 '14 11:09

Peterek


1 Answers

Link CoreGraphics framework to your target. Should fix that.

like image 70
ninjaneer Avatar answered Nov 02 '22 17:11

ninjaneer