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

I need to get the effect to the text label in my app.
I need the text to be loaded from its middle to edges.

share|improve this question

closed as not a real question by David Rönnqvist, omz, Monolo, Simon Goldeen, Jean Apr 30 at 21:21

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

2 Answers

If you mean that you need to set the justification / alignment for the text in your label, you just have to click the appropriate button (left alignment highlighted here):

enter image description here

-EDIT-

Re-reading your question it looks like you might be looking to create an animated text effect but it's not entirely clear. Could you clarify for us?

share|improve this answer

try this,

  UILabel *lblTitle = [[UILabel alloc] initWithFrame:CGRectMake(20,20, 200, 25)];
    lblTitle.textColor = [UIColor whiteColor];
    lblTitle.textAlignment=UITextAlignmentCenter; // UITextAlignmentRight UITextAlignmentLeft
    lblTitle.backgroundColor = [UIColor clearColor];
    lblTitle.text = @"Title";
    lblTitle.font = [UIFont boldSystemFontOfSize:20];
share|improve this answer

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