如何在Objective-C中从字符串数组创建内部链接?

时间:2019-02-26 14:31:38

标签: ios nsstring nsarray

如何在应用程序中通过术语列表为其定义创建链接?我需要将它们串联起来,并用逗号分隔,但是每个都有一个特定的链接。

1 个答案:

答案 0 :(得分:0)

容易。使用NSArray的componentsJoinedBy方法并传入定界符@","

NSString *components = [array componentsJoinedBy:@","];

https://developer.apple.com/documentation/foundation/nsarray/1412075-componentsjoined