Objective-C 警报 .. 不起作用?

发布于 2024-08-17 00:51:33 字数 494 浏览 7 评论 0原文

由于某种原因我的警报不起作用? 如果我使用 NSLog(@" %@ ", url) 没问题...但这里没有警报:

- (void)alertURL:(NSURL *)url {
UIAlertView *someError = [[UIAlertView alloc] initWithTitle: url message: @"Error sending your info to the server" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];

[someError show];
[someError release];
}

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
[self alertURL:url];
return YES;
}

有人能指出我出了什么问题吗:(

For some reason my alert is not working?
If i use NSLog(@" %@ ", url) its fine... but no alert here:

- (void)alertURL:(NSURL *)url {
UIAlertView *someError = [[UIAlertView alloc] initWithTitle: url message: @"Error sending your info to the server" delegate: self cancelButtonTitle: @"Ok" otherButtonTitles: nil];

[someError show];
[someError release];
}

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url {
[self alertURL:url];
return YES;
}

Could anyone point out to me whats going wrong :(

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

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

发布评论

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

评论(1

失眠症患者 2024-08-24 00:51:33

您将 NSURL 对象作为标题参数传递给 UIAlertView 初始值设定项。

title 参数需要一个 NSString ,但您显然没有传递给它。

您需要改为调用 [ url AbsoluteString ][ urlrelativeString ]

You are passing the NSURL object as the title argument to the UIAlertView initializer.

The title argument expects an NSString which you clearly are not passing to it.

You need to call [ url absoluteString ] or [ url relativeString ] instead.

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