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

How do you center the text inside a UILabel?

share|improve this question

5 Answers

up vote 44 down vote accepted

The Code is

[yourLabel setTextAlignment:UITextAlignmentCenter];

or (of course) the Obj-C 2.0 Dot-Syntax

yourLabel.textAlignment = UITextAlignmentCenter;

As Dev2rights points out. Use NSTextAlignmentCenter in feature versions of your app.

share|improve this answer
2  
Or with a little less bracket soup: yourLabel.textAlignment = UITextAlignmentCenter; – Peter DeWeese Jun 15 '11 at 19:58
1  
UITextAlignmentCenter is deprecated after iOS 6.0. Now use NSTextAlignmentCenter. – Dev2rights Mar 1 at 15:12
Also note that if you call [yourLabel sizeToFit] after setting the textAlignment, it will end up left-justified and ignore the textAlignment property. – spotdog13 May 7 at 15:35

Besides using code, as Henrik suggested, you can also set the appropriate property in Interface Builder.

share|improve this answer

This is depreciated now in iOS6.

You should use:

yourLabel.textAlignment = NSTextAlignmentCenter;
share|improve this answer

Try out the following code:

lblObject.TextAlignment=UITextAlignmentCenter;

Hope this helps you.

share|improve this answer

Try this code:

labelName.textAlignment = UITextAlignmentCenter
share|improve this answer

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.