gpt4 book ai didi

objective-c - 如何自定义类似 'stringWithFormat' 的方法?

转载 作者:行者123 更新时间:2023-12-02 07:37:05 25 4
gpt4 key购买 nike

我想自定义一个带有格式化字符串输入和(const char *)返回的方法,但是问题如下...谁能告诉我如何解决它?谢谢。 I want to customize a method with formated string input and (const char *) return,but the problem is like below... Can anyone tell me how to resolve it? Thanks.

最佳答案

-(const char *)stringWithFormat:(NSString *)format, ...
{
va_list args;
va_start(args, format);
NSString *lString = [[NSString alloc] initWithFormat:format arguments:args];
[lString autorelease];
va_end(args);
return [lString cStringUsingEncoding:NSUTF8StringEncoding];

}

关于objective-c - 如何自定义类似 'stringWithFormat' 的方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15128373/

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