2017-06-13 47 views

回答

3

我认为这是在外观上一样的截图一个没有内置。你必须提供你自己的复选标记图像。然后你可以改变外观像这样:

let hud = MBProgressHUD.showHUDAddedTo(view, animated: true) 
hud.mode = .CustomView 
hud.customView = UIImageView(image: UIImage(named: "checkmark")) // according to the documentation a good image size is something like 37x37px 
hud.label.text = "Completed" 

checkmark

相关问题