如何在Objective-C中为iPhone应用程序组合两个字符串

如何在Objective-C中为iPhone应用程序组合两个字符串,第1张

概述如何将“stringURL”和“stringSearch”组合在一起? - (IBAction)search:(id)sender;{stringURL = @"http://www.websitehere.com/index.php?s=";stringSearch = search.text;/* Something such as: stringURL_ = stringURL + 如何将“stringURL”和“stringSearch”组合在一起?
- (IBAction)search:(ID)sender;{stringURL = @"http://www.websitehere.com/index.PHP?s=";stringSearch = search.text;/* Something such as: stringURL_ = stringURL + stringSearch */[web loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:stringURL_]]];}
解决方法 菲利普举了个很好的例子.

您也可以使用纯stringWithFormat:方法.

Nsstring *combined = [Nsstring stringWithFormat:@"%@%@",stringURL,stringSearch];

这样,您可以通过将字符串放在字符串之间来 *** 纵字符串,如:

Nsstring *combined = [Nsstring stringWithFormat:@"%@/someMethod.PHP?%@",stringSearch];
总结

以上是内存溢出为你收集整理的如何在Objective-C中为iPhone应用程序组合两个字符串全部内容,希望文章能够帮你解决如何在Objective-C中为iPhone应用程序组合两个字符串所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/langs/1254463.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-06-07
下一篇 2022-06-07

发表评论

登录后才能评论

评论列表(0条)

保存