创建简单 UIAlertView 时的 EXC_BAD_ACCESS

发布于 2024-09-14 17:46:18 字数 304 浏览 2 评论 0原文

在使用以下代码声明一个简单的 UIAlertView 时,我在该行收到上述错误:

UIAlertView * alerteken =  [[UIAlertView alloc] initWithTitle:@"Email" message:@"Please enter the @mailinator.com email address you want to read:" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok"];

我做错了什么?

While declaring a simple UIAlertView, with the following code, I get the above mentionned error on that line:

UIAlertView * alerteken =  [[UIAlertView alloc] initWithTitle:@"Email" message:@"Please enter the @mailinator.com email address you want to read:" delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"Ok"];

What am I doing wrong?

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

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

发布评论

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

评论(1

帅气尐潴 2024-09-21 17:46:18

您需要提供最后以“nil”结尾的按钮标题列表:

otherButtonTitles:@"Ok",nil

You need to provide a list of button titles terminated with a "nil" at the end:

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