↧
Answer by Al-Noor Ladhani for another question about line break in UILabel
If you read a string from an XML file, the line break \n in this string will not work in UILabel tekst. The \n is not parsed to a line break. Here is a little trick to solve this issue: // correct next...
View ArticleAnswer by sha for another question about line break in UILabel
\n should work. Make sure you set numberOfLines to 0, and lineBreakMode to something that suits you.
View Articleanother question about line break in UILabel
I'm struggling with line break in UILabel. I'm generating xml in vb.net and then parse it in iPhone application. xml contains text which initially contains html tags such as , so I can and need to...
View Article