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;
you can put multiple lines of text in UILabel to solve your issue.
textLabel.lineBreakMode = NSLineBreakByWordWrapping; textLabel.numberOfLines = 0; textLabel.adjustsFontSizeToFitWidth = YES;
Courtesy:-https://stackoverflow.com/a/990244/1865424
It may help you.