我正在尝试制作一个具有 MKMapView 的应用程序,您可以打开/关闭它是否显示您的位置。我正在使用 UIActionSheet 让用户决定打开/关闭它的显示用户位置。问题不是 UIActionSheet,而是当我选择 YES 选项时,我似乎无法让 MKMapView 显示用户位置。
方法中的代码- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
:
// Show User Location ActionSheet
if (actionSheet.tag == 1) {
// YES Button
if (buttonIndex == 0) {
MapView.showsUserLocation = YES;
}
// NO Button
if (buttonIndex == 1) {
MapView.showsUserLocation = NO;
}
}
即使我按下是按钮,它也没有显示用户的位置。请帮忙?!?!