2017-06-13 28 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

相關問題