UITextField showing trash instead of characters
- by krasnyk
There's quite a strange thing happening to text fields in application I'm developing (see image below).
[1]: http://img7.imageshack.us/img7/1449/zrzutekranu20100506godz.png
At some point in the application I'm using
- (void) viewWillAppear:(BOOL)animated {
[super viewWillAppear:animated];
[[(TextFieldView*)[self view] usernameTextField] becomeFirstResponder];
}
Which results in the above image. If it's called in viewDidAppear - everything is fine.
The funny thing about this error is that it breaks ALL text fields throught the application.
Has anyone ever encountered such an error? Might it be related to openGL use?