I'm trying to display all string items within an array in a text label.
self.latestTenThrows.text = [NSString stringWithFormat:@"%@", self.savedThrowsArray];
The output of this in the view is however:
(
"4 + 4 + 3 + 2 + 1 = 14",
"6 + 5 + 4 + 5 + 2 = 22",
"2 + 3 + 5 + 1 + 6 = 17"
)
What should i do to get it to look like this:
4 + 4 + 3 + 2 + 1 = 14
6 + 5 + 4 + 5 + 2 = 22
2 + 3 + 5 + 1 + 6 = 17