标签:使用 sp strong on bs ad as nbsp res
/ / 这种默认菊花
_deletingHUD = [[MBProgressHUDalloc] initWithView:self.view];
_deletingHUD.labelText = @"正在删除...";
[self.viewaddSubview:_deletingHUD];
[_deletingHUDshow:YES];
/ / 这种带自定义图片
MBProgressHUD *hud = [[MBProgressHUDalloc] initWithView:self.view];
hud.mode = MBProgressHUDModeCustomView;
hud.labelText = @"网络已连接";
hud.customView = [[UIImageViewalloc] initWithImage:[UIImageimageNamed:@"success"]];
[self.view addSubview:hud];
[hud show:YES];
[hud hide:YES afterDelay:1];
标签:使用 sp strong on bs ad as nbsp res
原文地址:http://www.cnblogs.com/liman1990/p/4153803.html