I have a problem with my game, wich was developed in Xcode. When iOS 7 was released, I don't see the textbox for input, but everything else is working. And I don't know how to fix it :(. https://i.stack.imgur.com/je6Kw.png https://i.stack.imgur.com/JIvLR.png
Problem look somethink similar :).
Here is my code, button OK don't work too.
-(void)showRegisterAlert:(PlayerInfo*) play
{
NSString * pMessage = [NSString stringWithFormat:@"%@%d%@", @" Your Score is ", play->nScore, @"\n Enter Your Name\n\n"];
CGRect rect = CGRectMake(50, 75, 180, 20);
// CGRect rect = CGRectMake(50, 50, 180, 43);
m_pNameText = [[UITextField alloc] initWithFrame:rect];
m_pNewScoreAlert = [[UIAlertView alloc]initWithTitle:@"NEW HIGHSCORE" message:pMessage delegate:self
cancelButtonTitle:@"OK" otherButtonTitles:nil];
UIColor * color = [[UIColor alloc] initWithWhite:256.0f alpha:100.0f];
[m_pNameText setBackgroundColor: color];
[m_pNameText becomeFirstResponder];
[m_pNewScoreAlert addSubview:m_pNameText];
m_newPlay.nScore = play->nScore;
[m_pNewScoreAlert show];
[color release];
[m_pNewScoreAlert release];
SavePlayInfo();
}