Just replace the code at line 417---422 in MTLabel.m file with following code
//Check to see if our index didn't exceed the text, and if should limit to number of lines
if ((currentIndex + lineLength >= [_text length]) ||
(_limitToNumberOfLines && count >= _numberOfLines-1)) {
shouldDrawAlong = NO;
Just replace the code at line 417---422 in MTLabel.m file with following code
//Check to see if our index didn't exceed the text, and if should limit to number of lines
if ((currentIndex + lineLength >= [_text length]) ||
(_limitToNumberOfLines && count >= _numberOfLines-1)) {
shouldDrawAlong = NO;