如何在应用程序中通过术语列表为其定义创建链接?我需要将它们串联起来,并用逗号分隔,但是每个都有一个特定的链接。
答案 0 :(得分:0)
容易。使用NSArray的componentsJoinedBy
方法并传入定界符@","
。
NSString *components = [array componentsJoinedBy:@","];
https://developer.apple.com/documentation/foundation/nsarray/1412075-componentsjoined