I've got a UILabel for a description box that I want to stay a set width, I don't want it to scroll out of the box to the right. When it hits the width of the text box, I want it to go down on to the next line, if MaxLines is set to one, this causes it to scroll of the right of the UILabel. So I need to set MaxLines to anything but 1.
Currently I've just commented out label.maxLineCount = 1 and it's solved my issue. I just felt that it shouldn't automatically get set to 1.