I have an email setup and it accepts html but I cant find how to fill me email with the contents of an array! I was thinking of mayby converting the contents to an NSString so that I could put them in...
If my array has this "apple","orange","mango",nil;
How would i make it display in an email like this:
-FRUITS-
apple
orange
mango
I have an email setup and it accepts html but I cant find how to fill me email with the contents of an array! I was thinking of mayby converting the contents to an NSString so that I could put them in...
If my array has this "apple","orange","mango",nil;
How would i make it display in an email like this:
-FRUITS-
apple
orange
mango
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
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?
I would make my array something like
@"Mango 7",
@"Apple 3",
@"Orange 8"
You may need to change the way your Array is constructed, or put together a separate array of the "finished product" items. I always like to work with a finished product.
I would make my array something like
@"Mango 7",
@"Apple 3",
@"Orange 8"
You may need to change the way your Array is constructed, or put together a separate array of the "finished product" items. I always like to work with a finished product.
I cant do that... the arrays cant be combined into one... they are both very separate. I have two arrays:
"Apple","Orange","Mango",nil;
"7","3","5",nil;
I need them to show
Apple 7
Orange 3
Mango 5
All i can get though is this:
Apple
Orange
Mango
7
3
5
Theres gotta be some html or c solution to this...