Hi, I'm trying to create a label with a line break in using \n. But I want to do this from a dictionary and that's not working, its just showing the \n in the text for the label.
Basically the same problem as in this post:
Other Post
However no one had a solution in that post for getting the \n to work from a dictionary, so I was wondering if anyone else can think of anything? I'm wondering why it wouldn't work in the first place?
Basically I want to have lots of entries in the dictionary like this:
keyName = @"Title \n Lots of text...."
So then I want to display the Title, have the line break, and then the rest of the text, which would become multiline because I use the dimensions: alignment: version of the label.
The only other way I can think of doing this is by turning the dictionary of strings into one of arrays, each of which including the title and text as separate strings. But I'd rather not have to do this if I can find a way to get the \n working!
So any help is appreciated!