以下是CocoaControls的一些搜索结果:
> Callout
> Bubble
> Popup
自定义图像
已经有关于SO的问题回答了here和here等等.我敢说你会在他们中找到答案.基本上,代码是
- (MKAnnotationVIEw *)mapVIEw:(MKMapVIEw *)mapVIEw vIEwForAnnotation:(ID<MKAnnotation>)annotation{ if([annotation isKindOfClass:[MKUserLocation class]]) return nil; Nsstring *annotationIDentifIEr = @"CustomVIEwAnnotation"; MKAnnotationVIEw* annotationVIEw = [mapvIEw dequeueReusableAnnotationVIEwWithIDentifIEr:annotationIDentifIEr]; if(!annotationVIEw) { annotationVIEw = [[MKAnnotationVIEw alloc] initWithAnnotation:annotation reuseIDentifIEr:annotationIDentifIEr]]; } annotationVIEw.image = [UIImage imagenamed:@"map_location_pin.png"]; annotationVIEw.canShowCallout= YES; return annotationVIEw;}总结
以上是内存溢出为你收集整理的自定义标注泡泡iOS全部内容,希望文章能够帮你解决自定义标注泡泡iOS所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)