-2

我想在获取 GPS 位置时显示活动 HUD,但它不起作用。平视显示器不显示。知道为什么不显示吗?它只是没有显示在startupdatinglocation上。通话的其余部分都很好。

[HUD show:YES];
// start fetching data from a remote API
[locationManager startUpdatingLocation];
4

1 回答 1

2

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.tabBarController.view animated:YES];用来展示我的。self.tabBarController.view您需要通过更改为self.view或来告诉它哪个视图也显示它self.navigationController.view

于 2012-10-02T08:26:54.080 回答