Quote:
Originally Posted by Dutch
If your body is HTML, you can use:
Code:
NSString *s=@"-FRUITS-<br>";
s=[s stringByAppendingString:[myArray componentsJoinedByString:@"<br>"]];
|
Sweet Thanks! That worked great! I've been implementing it into my App but I've run into another issue. What if I have another string and need it displayed after the fruits but before the break. Like:
Mango 7
Apple 3
Orange 8
How would you accomplish that?