1

在 Apple 的 iOS Devs 论坛上发帖但没有得到答复后,我想看看是否有人对此类问题有任何经验。我正在为 iOS 7 使用 xcode。

MapView 不会更新。我很确定问题出在模拟器中,但我不确定如何检查它。我很想在真实设备上完成这个项目,但我的 iOS 7 设备仍在商店中。

我创建了一个嵌套在视图下的 MKMapView(嵌套在 ViewController 下)-> 将 CoreLocation 和 MapKit 添加到框架中-> 将 MKMapView 连接到正确的属性 mapView。

我的文件如下所示:

MapScanViewController.h:

#import <UIKit/UIKit.h>    
#import <MapKit/MapKit.h>

@interface MapScanViewController : UIViewController<MKMapViewDelegate>

// I was trying to create a label and print the 
// userLocation description into the label - but none worked
@property (nonatomic,retain) IBOutlet UILabel *myLabel;

@property (nonatomic,strong) IBOutlet MKMapView *mapView;

@end

MapScanViewController.m

#import "MapScanViewController.h"

@implementation MapScanViewController

- (void)viewDidLoad    
{
    [super viewDidLoad];
    _mapView.delegate = self;
}

- (void)mapView:(MKMapView *)mapView didUpdateUserLocation:(MKUserLocation *)userLocation
{
    MKCoordinateRegion region = MKCoordinateRegionMakeWithDistance(userLocation.coordinate, 800, 800);

    [_mapView setRegion:[_mapView regionThatFits:region] animated:YES];

    // Label idea did not work eiter
    [_myLabel setText:[userLocation description]];    
}

@end

当我尝试将位置更改为 Apple 的无限循环时,地图仍然保持不动,就像没有任何变化一样。还尝试使用自行车骑行和跑步,但没有任何反应。我尝试了几次重置 iOS 模拟器,但这根本没有帮助,当然还尝试从 xcode 自身中手动设置位置。

试图添加/强制这个(这也没有帮助):

if (_mapView.showsUserLocation)
{
_mapView.showsUserLocation = NO;
_mapView.showsUserLocation = YES;
}

没有一个对我有用。MapView 只是不会响应。


我验证了地图视图

// Meters-Miles convertion
#define METERS_PER_MILE 1609.344

// Just wanted to check if MapView's dead or not - worked- it took me to see (39.28..., -76.58...)
- (void)viewWillAppear:(BOOL)animated {
    // 1
    CLLocationCoordinate2D zoomLocation;
    zoomLocation.latitude = 39.281516;
    zoomLocation.longitude= -76.580806;

    // 2
    MKCoordinateRegion viewRegion = MKCoordinateRegionMakeWithDistance(zoomLocation, 0.5*METERS_PER_MILE, 0.5*METERS_PER_MILE);

    // 3
    [_mapView setRegion:viewRegion animated:YES];
}
4

2 回答 2

7

你必须先打电话_mapView.showsUserLocation = YES;,然后才能从地图上得到任何东西。

该调用将提示用户访问位置服务。

于 2013-10-27T10:48:52.500 回答
0

正如 Daij-Djan 所说,尝试这样

- (void)viewDidLoad    
{
 _mapView.showsUserLocation = YES;
}
于 2013-10-27T10:31:22.467 回答