gpt4 book ai didi

iphone - ButtonPressed 方法上的警告

转载 作者:行者123 更新时间:2023-12-03 20:25:51 28 4
gpt4 key购买 nike

我在 .h 文件中声明了一个方法

-(IBAction)buttonTapped:(id) sender;

我将此方法应用到我的 .m 文件中

-(IBAction)buttonTapped:(id)sender
{
NSString* themessage=[NSString stringWithFormat:@"I'm %@ and feeling %@ about it",[activities objectAtIndex:[tweetPicker selectedRowInComponent:0]],
[feelings objectAtIndex:[tweetPicker selectedRowInComponent:1]]];
NSLog (themessage);

}

但在 NSLog (themessage) 行;

它向我显示警告,例如“格式字符串不是字符串文字(可能不安全”)

请建议我应该做什么...

最佳答案

您没有指定格式字符串:

NSLog(@"%@", themessage);

一些关于如何在 CocoaDev 上使用该功能的有用示例.

关于iphone - ButtonPressed 方法上的警告,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7025811/

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