Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am rotating the view and resizing and moving around UITextFields when this occurs. The only problem is that the placeholder text no longer stays in the middle. What should I do? Thanks!

share|improve this question

1 Answer

up vote 1 down vote accepted

This appears to be a bug with UIKit. This code was executed on rotation for both portrait and landscape:

textField.textAlignment = UITextAlignmentLeft; 
textField.textAlignment = UITextAlignmentCenter;

The text field's textAlignment property is moved to the left, then back to the center, almost refreshing it. If I try running the code without moving it to the left first, it doesn't work.

share|improve this answer
This bug has been fixed in iOS 5. – Jack Humphries Aug 26 '11 at 3:51

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.