I have a text (Story of a book). I am taking UILabel to display it. But it is not showing me on view. I am using the following code:
CGSize labelsize;
I experienced the same thing lately, the UILabel size is allocated correctly, it's just the UILabel itself cannot hold too many characters, the maximum character limit depends on font and font size.
For the font I used, the limit is around 13k characters. My work around is to truncate the string before hand, it's not ideal though.