0

我的代码:

打开对话框

在此处输入图像描述

- (void)viewDidLoad
{
    //Start
    MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];
    hud.labelText = @"loading...";
}

我正在使用MBProgress HUD 但我想对话框单击关闭
如何关闭对话框以单击关闭?

4

1 回答 1

1

成功了!(Void) touchesEnded 事件必须使用

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event{
[MBProgressHUD hideHUDForView:self.view animated:YES];
}
于 2012-12-18T11:58:42.593 回答