如何将文本字段中的文本插入到警报视图中

发布于 2024-12-01 00:18:23 字数 282 浏览 1 评论 0原文

如果我想将文本字段中的文本插入到警报视图中,我不会使用此代码吗?文本应该在的地方写着: 。感谢您的帮助!

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message: %@",textField.text delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

[alert show];
[alert release];

if I wanted to insert text from a text field into an alert view, wouldn't I use this code? Where the text should be, it says: . Thanks for your help!

UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Title" message:@"Message: %@",textField.text delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

[alert show];
[alert release];

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

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

发布评论

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

评论(1

热鲨 2024-12-08 00:18:23

使用这个:

... message:[NSString stringWithFormat:@"Message: %@",textField.text] ...

Use this:

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