我已经通过网络,找不到一个适当的链接,解释如何自定义标注泡沫.如果您有任何人遇到或知道,请与我分享.
任何简单的例子或链接都将是非常好的.
提前致谢
苏雷什
- (MKAnnotationVIEw *)mapVIEw:(MKMapVIEw *)mapVIEw vIEwForAnnotation:(ID <MKAnnotation>)annotation{ MKAnnotationVIEw *annotationVIEw = [[MKPinAnnotationVIEw alloc] initWithAnnotation:annotation reuseIDentifIEr:@"loc"]; // button UIbutton *button = [UIbutton buttonWithType:UIbuttonTypeDetaildisclosure]; button.frame = CGRectMake(0,23,23); annotationVIEw.rightCalloutAccessoryVIEw = button; // Image and two labels UIVIEw *leftCAV = [[UIVIEw alloc] initWithFrame:CGRectMake(0,23)]; [leftCAV addSubvIEw : yourImageVIEw]; [leftCAV addSubvIEw : yourFirstLabel]; [leftCAV addSubvIEw : yourSecondLabel]; annotationVIEw.leftCalloutAccessoryVIEw = leftCAV; annotationVIEw.canShowCallout = YES; return annotationVIEw;}
欲了解更多信息,请查看:http://developer.apple.com/library/ios/#documentation/MapKit/Reference/MKAnnotationView_Class/Reference/Reference.html%23//apple_ref/occ/cl/MKAnnotationView
总结以上是内存溢出为你收集整理的ios – 自定义MKAnnotation标注泡沫全部内容,希望文章能够帮你解决ios – 自定义MKAnnotation标注泡沫所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)