I'm trying to display some horizontally scrolling text in multiple columns. The twist is, the column width is known, but the column count depends on the text length.
There is an Core Text Objective-C Wrapper, but it works with a fixed column count which disqualifies it.
I know it would be possible with a UIWebView and some CSS 3 using column-width, like shown in this fiddle. But I also read that UIWebViews obviously need a lot of memory which I want to avoid.
Is there another way I can achieve this?