9

MBProgressHUD オーバーレイにカスタム ビューをロードすることは可能ですか? MBProgressHUD クラスにはカスタム ビュー オプションがありますが、customView で XIB ビューなどを割り当てることはできますか??

4

1 に答える 1

11

はい、次のようなことができます:

MBProgressHUD *loadingHUD = [[MBProgressHUD alloc] init];
loadingHUD.mode = MBProgressHUDModeCustomView;
loadingHUD.labelText = nil;
loadingHUD.detailsLabelText = nil;
UIView *customView = [[UIView alloc] initWithFrame:self.view.bounds]; // Set a size
// Add stuff to view here
loadingHUD.customView = customView;
[HUD show:YES];
于 2012-08-21T11:56:38.843 に答える