SVProgressHUD是一個偉大的替代MBProgressHUD,讓你決定是否要阻止用戶輸入或不:
+ (void)showWithMaskType:(SVProgressHUDMaskType)maskType;
SVProgressHUDMaskType:
enum {
SVProgressHUDMaskTypeNone = 1, // allow user interactions, don't dim background UI (default)
SVProgressHUDMaskTypeClear, // disable user interactions, don't dim background UI
SVProgressHUDMaskTypeBlack, // disable user interactions, dim background UI with 50% translucent black
SVProgressHUDMaskTypeGradient // disable user interactions, dim background UI with translucent radial gradient (a-la-alertView)
};
來源
2012-03-14 18:36:43
tim