以下でわかるように、右のボタンを持つアノテーションビューがあります。ユーザーが右ボタンをタップするとポップオーバーが表示されます。問題はユーザーがタップした場所がわからないため、XとYが表示されないためです。右のコールアウトアクセサリビューがタップされたときの位置を追跡する方法
ユーザーがタップした場所、つまりXとYはどのようにして見つけられますか?
HotelAnnotationView *customPinView = [[HotelAnnotationView alloc] initWithAnnotation:theHotel reuseIdentifier:hotelPin];
//The right button which allows user to see hotel information
UIButton* rightButton = [UIButton buttonWithType:UIButtonTypeInfoLight];
[rightButton addTarget:self action:@selector(showDetailsForHotel:) forControlEvents:UIControlEventTouchUpInside];
rightButton.tag = theHotel.id;
customPinView.rightCalloutAccessoryView = rightButton;