iOS 7 UITextView alineación vertical

¿Cómo es posible que mi editable?UITextView (colocado dentro de un controlador UIView sencillo dentro de unUISplitView que actúa como delegado de laUITextView) ¿No muestra texto desde el principio pero después de algo como 6-7 líneas?

No configuré ninguna reproducción automática en particular o algo similar, intentar eliminar el texto no ayuda (por lo que no hay caracteres ocultos o algo así).

Estoy usando iOS 7 en iPad, en el guión gráfico se ve bien ... El problema es el mismo en el simulador de iOS y en los dispositivos reales. Me estoy volviendo loca: p

Aquí hay un código. Este es el ViewControllerviewDidLoad()

- (void)viewDidLoad
{
    [super viewDidLoad];
    // Do any additional setup after loading the view.
    self.itemTextField.delegate = self;
    self.itemTextField.text = NSLocalizedString(@"NEWITEMPLACEHOLDER", nil);
    self.itemTextField.textColor = [UIColor lightGrayColor]; //optional
}

Y aquí están las funciones anuladas para elUITextView Estoy usando un código que encontré en StackOverflow para simular un marcador de posición para la vista (las mismas cosas en la versión para iPhone del guión gráfico funcionan bien) ...

// UITextView placeholder
- (void)textViewDidBeginEditing:(UITextView *)textView
{
    if ([textView.text isEqualToString:NSLocalizedString(@"NEWITEMPLACEHOLDER", nil)]) {
        textView.text = @"";
        textView.textColor = [UIColor blackColor]; //optional
    }
    [textView becomeFirstResponder];
}

- (void)textViewDidEndEditing:(UITextView *)textView
{
    if ([textView.text isEqualToString:@""]) {
        textView.text = NSLocalizedString(@"NEWITEMPLACEHOLDER", nil);
        textView.textColor = [UIColor lightGrayColor]; //optional
    }
    [textView resignFirstResponder];
}

-(void)textViewDidChange:(UITextView *)textView
{
    int len = textView.text.length;
    charCount.text = [NSString stringWithFormat:@"%@: %i",  NSLocalizedString(@"CHARCOUNT", nil),len];
}

- (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
{
    return YES;
}

Respuestas a la pregunta(8)

Su respuesta a la pregunta