So I have my view setup in IB such that this text label aligns with the top of the thumbnail via constraints.
What you're looking for is these two lines of code.
myLabel.numberOfLines = 0; myLabel.lineBreakMode = UILineBreakModeWordWrap;
and you will also find this in the Attributes Inspector under "Line Breaks" and "Lines".