You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
1. attempt to show a UIAlertView or UIActionSheet view when the
tapOnMarker:onMap: method is called.
What is the expected output? What do you see instead?
the UIAlertView or UIActionSheet view should be displayed; however, instead
tapOnMarker:onMap: seems to be called repeatedly until the program crashes.
What subversion release are you using? Does the behavior occur on the
simulator, a real iPhone/iPod Touch, or both?
version 0.5. iOS versions prior to 4.0 do not produce the problem. problem
occurs with both simulator and real devices running iOS 4.
If you can reproduce your bug, please provide the source code for a
reproducing case. The best place to start is with the SampleMap project.
for example, add the following code to the MainViewController.m file in the
MarkerMurder project:
- (void) tapOnMarker:(RMMarker *)marker onMap:(RMMapView *)map {
NSLog(@"tapped on marker: %@", [marker description]);
UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Marker" message: [marker description] delegate: self cancelButtonTitle: @"OK" otherButtonTitles: nil];
[alert show];
[alert release];
}
then build/run project and tap on a marker in the map view.
Please don't send patches/diffs. Post source code directly to the issue
tracker, noting your suggested revisions. If they are extensive, use a
branch in subversion with the same name as your issue number (e.g.
branches/issue59).
Please provide any additional information below.
Original issue reported on code.google.com by [email protected] on 11 Jul 2010 at 9:24
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 11 Jul 2010 at 9:24The text was updated successfully, but these errors were encountered: