gpt4 book ai didi

objective-c - 使用NSString作为UIAlertView消息:

转载 作者:行者123 更新时间:2023-12-01 18:30:15 25 4
gpt4 key购买 nike

我不知道为什么这行不通,我已经尝试了100种方法。 AlertView显示空白消息。这是我的代码:

eventChoiceNow = [[UIAlertView alloc] initWithTitle:@"Hurry Up!" message:timeTillRest delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];

timeTillRest是一个NSString。并且在调用alertview之前, NSLog(@"%@",timeTillRest);可以毫无问题地显示该字符串。

最佳答案

为什么要使用alertview作为实例变量?没有必要。就这么简单:

UIAlertView *eventChoiceNow = [[UIAlertView alloc] initWithTitle:@"Hurry Up!" message:timeTillRest delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil];
[eventChoiceNow show];
[eventChoiceNow release];

关于objective-c - 使用NSString作为UIAlertView消息:,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9852808/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com