vote up -4 vote down star

how to set a multiline as title of a UIButton in iPhone programming

pls help me ..

thanks and regards ..

flag

0% accept rate
Agree this should be closed as a dupe. Raju - please can you try searching rather than just posting new questions. You are wasting everyone elses time. It might also help the general goodwill if you marked a few of the questions you asked as answered. – Roger Nolan Jun 8 at 9:25

3 Answers

vote up 1 vote down

UIButton doesn't display multiple lines. The way to make it do so is to addSubview a UILabel to the button

link|flag
vote up 2 vote down

hihi,

There is a property of UIButton called lineBreakMode which will allow you to add multiline titles. The two main things I would set it to are UILineBreakModeWordWrap or UILineBreakModeCharacterWrap.

UILineBreakModeWordWrap wraps the last word and UILineBreakModeCharacterWrap wraps at the lastcharcter.

looks like:

instanceOfUIButton.lineBreakMode = UILineBreakModeWordWrap;

or

instanceOfUIButton.lineBreakMode = UILineBreakModeCharacterWrap;

hope that's what your after

link|flag
vote up 5 vote down
someButton.lineBreakMode = UILineBreakModeWordWrap;

Be sure to try to get in the habit of consulting the documentation before posting a question. Apple's documentation is pretty comprehensive, and things like this generally get covered.

link|flag
thank you very much... have you any sample code.. pls give me... – Raju May 26 at 6:32
5  
"Be sure to try to get in the habit of consulting the documentation before posting a question." – Carson Myers May 26 at 6:41

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.