视图作为参数,但视图初始值设定项为零

发布于 2024-10-08 12:13:18 字数 266 浏览 1 评论 0原文

我正在尝试使用此处找到的 MBProgressHUD,但我遇到了问题。

我希望能够在加载新的 UIViewController 时显示 UIView 进度指示器

- (void)viewDidLoad {
   HUD = [[MBProgressHUD alloc] initWithView:self.view.window];
}

问题是视图尚未初始化并返回异常。

我怎样才能克服这个问题?

特奥

I'm trying to use the MBProgressHUD found here but i have a problem.

I want to able to show the UIView progress indicator when a new UIViewController is loaded

- (void)viewDidLoad {
   HUD = [[MBProgressHUD alloc] initWithView:self.view.window];
}

The problem is that the view is not yet initialize and returns an exception.

How can i overcome this?

Teo

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

泪是无色的血 2024-10-15 12:13:18

老兄,你永远不想写这样的代码:

self.view.window //In iOS projects, *window* is such a holy thing that only the *AppDelegate is responsible to handle

在 MBProgressHUD 的官方示例代码中,他们是这样编码的:

mbProgressHUD = [[MBProgressHUD alloc] initWithView:self.view];

Dude you never want to write code like this:

self.view.window //In iOS projects, *window* is such a holy thing that only the *AppDelegate is responsible to handle

In MBProgressHUD's official sample code, they code this way:

mbProgressHUD = [[MBProgressHUD alloc] initWithView:self.view];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文