IOS中(类似于进度条哪种效果)MBProgressHUD的使用

1.显示HUD

MBProgressHUD *hud = [MBProgressHUD showHUDAddedTo:self.view animated:YES];

hud.labelText = @"哥正在加载中...";

hud.dimBackground = YES;

 

2.移除hud

[MBProgressHUD hideAllHUDsForView:self.view animated:YES];

posted on 2013-11-24 21:08  林源  阅读(296)  评论(0编辑  收藏  举报

导航