I have
- (MKAnnotationView *)mapView

MKMapView *)mV viewForAnnotation

id <MKAnnotation>)annotation
{
........ some code ......
[rightButton addTarget:self
action:@selector(showDetails)
forControlEvents:UIControlEventTouchUpInside];
...... some code .....
}
- (void)showDetails

id)sender
{
MyDetailView *Second = [[MyDetailView alloc] initWithNibName:@"MyDetailView" bundle:nil];
[self presentModalViewController:Second animated:YES];
//I want to assign the annotation title to the details view
Second.label.text = ????
[Second release];
}
How can I do that?