我有一个包含 UItableView、地图视图和段控制的 viewController,如下图所示:
![在此处输入图像描述][1]
测试视图控制器.h
@interface TestViewController UIViewController:<MKMapViewDelegate,CLLocationManagerDelegate,UITableViewDataSource,UITableViewDelegate> {CLLocationManager * locationManager;}
测试视图控制器.m
MyMap.delegate=self;
// Ensure that you can view your own location in the map view.
[MyMap setShowsUserLocation:YES];
UItableView 工作正常,但是当我写“[MyMap setShowsUserLocation:YES];”时显示错误
这是错误消息:“UITableView”没有可见的@interface 声明选择器“setShowsUserLocation:”
提前致谢