NSArray *arr=[[NSArray alloc] initWithObjects:@"I",@"am",@"good"@"boy",@"very",@"much", nil]; NSString *str=[arr componentsJoinedByString:@" "]; NSLog(@"str:%@",str);//str:I am goodboy very much