我在我的应用程序中使用MKMapView
并使用mapView.scrollEnabled=NO;
但它无效。这是我的代码:
mapView=[[MKMapView alloc] initWithFrame:CGRectMake(20, 100, 282, 209)];
mapView.delegate=self;
mapView.scrollEnabled=NO;
[self.view addSubview:mapView];
我的代码有问题吗?
答案 0 :(得分:11)
您在代码中使用了YES
而不是NO
。请使用以下NO
。
mapView.scrollEnabled = NO;
答案 1 :(得分:2)
尝试将userInteractionEnabled
的{{1}}属性设置为MKMapView
。
NO
答案 2 :(得分:2)
答案 3 :(得分:1)