目标C - 表达式不是不赋值,映射套件



我试图显示一个地图工具包,我正在做以下工作:MapViewController.h

#import <UIKit/UIKit.h>
#import <MapKit/MapKit.h>
#import <QuartzCore/QuartzCore.h>
@interface SiteViewController : UIViewController <MKMapViewDelegate>
@property (assign, nonatomic)       MKCoordinateRegion  region;
@property (strong, nonatomic)       IBOutlet MKMapView  *googleMap;
@end

MapViewController.m

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Set propertiesfor the mapView
    self.region.center.latitude         =   43.62862 ; // expression is not assigned
    self.region.center.longitude        =   -79.331245;// expression is not assigned
    self.region.span.longitudeDelta     =   0.01f;     // expression is not assigned
    self.region.span.longitudeDelta     =   0.01f;     // expression is not assigned
    [self.googleMap setMapType:MKMapTypeStandard];
    [self.googleMap setZoomEnabled:YES];
    [self.googleMap setScrollEnabled:YES];
    [self.googleMap setRegion:self.region animated:YES];

    MKPointAnnotation *pin = [[MKPointAnnotation alloc] init];
    pin.coordinate  = region.center;
    [self.googleMap addAnnotation:pin];
}

I am getting

表达式未赋值

我不明白。谁能解释一下,帮我摆脱这个麻烦?

您需要通过region属性或- (void)setRegion:(MKCoordinateRegion)region animated:(BOOL)animated;方法设置mapview区域。

试试这个:

CLLocationCoordinate2D coordinate = CLLocationCoordinate2DMake(43.62862, -79.331245);
[self.mapView setRegion:MKCoordinateRegionMake(coordinate, MKCoordinateSpanMake(0.01f, 0.01f))];

相关内容

  • 没有找到相关文章

最新更新