MBProgressHUD換行顯示文字
阿新 • • 發佈:2019-02-11
-(void)showToast:(NSString *)string{
[MBProgressHUDhideAllHUDsForView:self.viewanimated:YES];
AppDelegate *app = (AppDelegate *)[UIApplicationsharedApplication].delegate;
MBProgressHUD *hud = [MBProgressHUDshowHUDAddedTo:app.windowanimated:YES];
hud.mode = MBProgressHUDModeText;
// hud.labelText = string;
hud.detailsLabelText = string;
hud.detailsLabelFont = [UIFontfontWithName:@"Arial"size:16];
[hud showAnimated:YESwhileExecutingBlock:^{
sleep(2);
} completionBlock:^{
if ([[[UIApplicationsharedApplication]windows] count] > 1) {
[MBProgressHUDhideAllHUDsForView:[[[UIApplication
}else{
[MBProgressHUDhideAllHUDsForView:self.viewanimated:YES];
}
}];
}