我测试了下面的代码,但是,您可能需要进行一些调整.
- (voID)mapVIEw:(MKMapVIEw *)mapVIEw regionDIDChangeAnimated:(BOol)animated{ NSArray *annotations = [_mapVIEw annotations]; MyAnnotation *annotation = nil; for (int i=0; i<[annotations count]; i++) { annotation = (MyAnnotation*)[annotations objectAtIndex:i]; if (_mapVIEw.region.span.latitudeDelta > .010) { [[_mapVIEw vIEwForAnnotation:annotation] setHIDden:YES]; } else { [[_mapVIEw vIEwForAnnotation:annotation] setHIDden:NO]; } }}
干杯,VFN
总结以上是内存溢出为你收集整理的iphone – 隐藏,在MkMapView上显示注释全部内容,希望文章能够帮你解决iphone – 隐藏,在MkMapView上显示注释所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)