tags:

views:

8

answers:

1

i have htmlString of string type.i want to append the view port code to this variable.How to do this?is it possible to do this?

A: 

you mean this?

NSString *str3 = [str1 stringByAppendingString: str2];
Max Seelemann