在我的 iPhone 应用程序中,我需要在标注视图的字幕中显示指向网站的超链接。我正在使用显示地图类 url有人可以指出此代码中的泄漏吗?
我需要在 subtitle.help 我中添加超链接
由湿婆米
在我的 iPhone 应用程序中,我需要在标注视图的字幕中显示指向网站的超链接。我正在使用显示地图类 url有人可以指出此代码中的泄漏吗?
我需要在 subtitle.help 我中添加超链接
由湿婆米
我认为您可以通过这种方式满足您的要求..
- (MKAnnotationView *) mapView:(MKMapView *)mapView viewForAnnotation:(id <MKAnnotation>) annotation{
MKPinAnnotationView *locationView;
locationView=[[[MKPinAnnotationView alloc] initWithAnnotation:annotation reuseIdentifier:@"currentloc"] autorelease];
locationView.pinColor=MKPinAnnotationColorPurple;
locationView.animatesDrop=TRUE;
locationView.canShowCallout =YES;
locationView.annotation=annotation;
locationView.calloutOffset = CGPointMake(-5, 5);
UITextView *text=[[UITextView alloc] initWithFrame:CGRectMake(0, 0, 100, 30)];
text.dataDetectorTypes=UIDataDetectorTypeLink ;
text.backgroundColor=[UIColor clearColor];
text.editable=NO;
text.text=@"http://google.com";
locationView.rightCalloutAccessoryView = text;
return locationView;
}