これは、このコードを使用したときに得られるものです:
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:[NSString stringWithFormat:@"Rank on ScoreBoard: %d",positionOnBoard] message:@"" delegate:self cancelButtonTitle:@"Dismiss" otherButtonTitles:@"Submit", nil];
nameField = [[UITextField alloc] initWithFrame:CGRectMake(12, 25, 260, 21)];
[nameField setBackgroundColor:[UIColor whiteColor]];
[nameField setPlaceholder:@"Your Name Here!"];
[alert addSubview:nameField];
[alert show];
[nameField becomeFirstResponder];
[alert release];
ご覧のとおり、めちゃくちゃです。プロジェクトを iOS 4.0 にアップグレードしたときにのみ発生しました。