iOS開(kāi)發(fā)常用的第三方類庫(kù)
請(qǐng)求完成時(shí)隱藏提示效果:
1 | [HUD hide:YES]; |
對(duì)于同步方法一般都是用showWhileExecuting方法,方法執(zhí)行完成之后會(huì)自動(dòng)隱藏提示效果:
1 | [HUD showWhileExecuting:@selector(myTask) onTarget:self withObject:nil animated:YES]; |
SVProgressHUD 提示效果
GitHub:https://github.com/samvermette/SVProgressHUD
SVProgressHUD和MBProgressHUD效果差不多,不過(guò)不需要使用協(xié)議,同時(shí)也不需要聲明實(shí)例。
直接通過(guò)類方法進(jìn)行調(diào)用即可:
1 | [SVProgressHUD method] |
可以使用以下方法來(lái)顯示狀態(tài):
1 2 3 4 | + (void)show; + (void)showWithMaskType:(SVProgressHUDMaskType)maskType;
相關(guān)推薦
技術(shù)專區(qū)
|
評(píng)論