MBProgressHUD オーバーレイにカスタム ビューをロードすることは可能ですか? MBProgressHUD クラスにはカスタム ビュー オプションがありますが、customView で XIB ビューなどを割り当てることはできますか??
質問する
6712 次
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 に答える