NSString *str=@"hello";
NSString *str1=@"world";
NSString *new=[str stringByAppendingFormat:@" %@",str1];
NSLog(@"%@",new);