Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I can't set the title of UIButton using IB as center. My title is multi line.
It is giving like this one
enter image description here

But I want like this one
enter image description here

I have given space in this but I don't want to do that. As it is not aligned exactly for some cases and I know there is a property of UILabel to set the alignment but I don't want to write a code for that.. just want to set everything from IB.

Thanks

share|improve this question
Kumar Rathor - try by code self.yourButton.titleLabel.textAlignment = UITextAlignmentCenter; – Spark Mar 26 at 7:00
@Spark I know how to do this by code but what I wanted is to set it using 'IB'. – Inder Kumar Rathore Mar 26 at 7:03
I know, you'd like to set it using IB. But such property is only accessible via code. – Spark Mar 26 at 7:06

5 Answers

up vote 34 down vote accepted

Use the line:

myButton.contentHorizontalAlignment = UIControlContentHorizontalAlignmentCenter;

This should center the content (horizontally).

And if you want to set the text inside the label to the center as well, use:

[labelOne setTextAlignment:UITextAlignmentCenter];

If you want to use IB, I've got a small example here which is linked in XCode 4 but should provide enough detail (also mind, on top of that properties screen it shows the property tab. You can find the same tabs in XCode 3.x): enter image description here

share|improve this answer
That sets the label's alignment to center but not its text.. – Inder Kumar Rathore Apr 19 '11 at 8:21
@Inder Kumar Rathore: see edit ;) – Joetjah Apr 19 '11 at 8:27
1  
thanks...but I don't want to set it through IB. :( that's my last option of doing that... – Inder Kumar Rathore Apr 19 '11 at 8:39
1  
@Inder Kumar Rathore: No problem. To set it in IB, you should click on the label, then in the Attributes Inspector, set Alignment to "Center". In my IB (XCode 4), it has 3 icons showing the alignment of text. Obviously, you should pick the middle one then. – Joetjah Apr 19 '11 at 8:51
can you please send me the screen shot... Is this the label of the Button or you have draged the UILabel from the library??? I suppose it UILabel not button's label – Inder Kumar Rathore Apr 19 '11 at 9:41
show 2 more comments

This will make exactly what you were expecting:

 [myButton.titleLabel setTextAlignment:UITextAlignmentCenter];
share|improve this answer
This is the correct answer. Thanks :) – Walid Hossain Apr 23 at 10:08

For those of you who are now using iOS 6 or higher, UITextAlignmentCenter has been deprecated. It is now NSTextAlignmentCenter

EXAMPLE: mylabel.textAlignment = NSTextAlignmentCenter; Works perfectly.

share|improve this answer
+1 Thanks for the info. I'll surely check that.. :) – Inder Kumar Rathore Dec 20 '12 at 8:52

For UIButton you should use:-

[btn setContentHorizontalAlignment:UIControlContentHorizontalAlignmentCenter];
share|improve this answer

UITextAlignmentCenter is deprecated in iOS6

Instead you can use this code:

btn.textAlignment=NSTextAlinmentCenter;

share|improve this answer
There is no property for UIButton callee textAlignment. – Ravi May 2 at 20:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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