
UIButton Wrap Text - How can i warp the text in two lines? I have created the UIButton Programatically.

OK ..i find it.
To Wrap Text in UIButton .. UILineBreakModeWordWrap can be used. See the code below..
Button.titleLabel.lineBreakMode = UILineBreakModeWordWrap;
we can also align the text into center, as given below..
Button.titleLabel.textAlignment = UITextAlignmentCenter;