私のxibにマップビューがあります。
-(void) touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{
UITouch *touch = [touches anyObject];
NSLog(@"Touch Description %@",[[touch view]description]);
if ([touch view] == self.mapView)
{
//rest of my code
}
}
私が得る説明は
MKAnnotationContainerView: 0x19057360; フレーム = (0 0; 4096 4096); autoresizedSubviews = NO; レイヤー = CALayer: 0x1900df20
if ループは実行されていません。どうすればこれを解決できますか。私を助けてください。