iPhone SDK简单提醒消息问题

发布于 2024-08-28 21:01:50 字数 284 浏览 7 评论 0原文

char asd='a';
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Are you sure?" message:asd
               delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];

上面的代码无法在 iPhone 模拟器中编译。 这是为什么? :)

char asd='a';
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Are you sure?" message:asd
               delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];

above code not compiling in iPhone simulator.
Why is that?
:)

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

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

发布评论

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

评论(3

落叶缤纷 2024-09-04 21:01:50

您试图在需要 NSString 的地方传递一个 char 。阅读 Objective-C 和 Cocoa/Cocoa Touch 文档。

要解决您的问题,请尝试以下操作:

NSString *asd = @"a";
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Are you sure?" message:asd
               delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];

You're trying to pass a char where an NSString is expected. Read up on Objective-C and th Cocoa/Cocoa Touch documentation.

To fix your issue, try this:

NSString *asd = @"a";
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Are you sure?" message:asd
               delegate:self cancelButtonTitle:@"Cancel" otherButtonTitles:@"OK", nil];
[alert show];
[alert release];
|煩躁 2024-09-04 21:01:50
  1. 您不在 iPhone 中编译
    模拟器,你在你的mac上编译。
  2. 您收到错误消息吗?
  3. 消息参数应该是 NSString,而不是 char
  1. You don't compile in the iPhone
    simulator, you compile on your mac.
  2. Do you get an error message?
  3. The message parameter should be an NSString, not a char?
平安喜乐 2024-09-04 21:01:50

替换

char asd='a';

NSString *asd=@"a";

它应该在它之后编译...

replace

char asd='a';

With

NSString *asd=@"a";

It should compile after it...

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