我创建一个数组并使用componentsjoinedbyString显示它:" | &#34 ;.我的代码如下:
NSMutableArray *items=[[NSMutableArray alloc] initWithObjects:@"A walk to remember",@"The Last song",@"The Notebook",@"Dear John",@"The Longest Ride",nil];
for(int i=0;i<[items count];i++){
NSString* lab=[items objectAtIndex:i];
lab=[items componentsJoinedByString:@" | "];
NSLog(@"label:%@",lab);
[self.label setText:lab];
}
但是现在我想在元素之间添加一个图像(而不是&#34; |&#34;)。这是最好的方法吗?谢谢你的帮助。