Заполнитель в метке UITextView не исчезает - PullRequest
0 голосов
/ 22 марта 2012

Я знаю, что здесь много ссылок для заполнителя для UITextView, и я попробовал ту, которая работала для меня, но я не работаю. Текст-заполнитель остается там, даже когда я начинаю печатать в textView. У кого-нибудь есть идеи, почему? Я вставил свой код ниже.

AddExerciseViewController.m

 #import "AddExerciseViewController.h"

 @implementation AddExerciseViewController
 @synthesize nameTextField = _nameTextField;
 @synthesize descriptionTextView = _descriptionTextView;
 @synthesize placeholderLabel = _placeholderLabel;

 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
 {
     self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
     if (self) {     
     }
     return self;
 }

 - (void)viewDidLoad
 {
     _descriptionTextView.layer.borderWidth = 3.0f;
     _descriptionTextView.layer.borderColor = [[UIColor grayColor ] CGColor];
     _descriptionTextView.layer.cornerRadius = 5;
     _descriptionTextView.clipsToBounds = YES;

    _placeholderLabel = [[UILabel alloc] initWithFrame:CGRectMake(10.0, 0.0,           _descriptionTextView.frame.size.width - 20.0, 34.0)];
     [_placeholderLabel setText: @"FooBar"];

     // placeholderLabel is instance variable retained by view controller
     [_placeholderLabel setBackgroundColor:[UIColor clearColor]];
     [_placeholderLabel setTextColor:[UIColor lightGrayColor]];

     [_descriptionTextView addSubview:_placeholderLabel];
     [super viewDidLoad];
 }

 - (void) textViewDidChange:(UITextView *)theTextView
 {
     if(![_descriptionTextView hasText]) {
    [_descriptionTextView addSubview:_placeholderLabel];
    [UIView animateWithDuration:0.15 animations:^{
        _descriptionTextView.alpha = 1.0;
    }];
 } else if ([[_descriptionTextView subviews] containsObject:_placeholderLabel]) {

    [UIView animateWithDuration:0.15 animations:^{
        _placeholderLabel.alpha = 0.0;
    } completion:^(BOOL finished) {
        [_placeholderLabel removeFromSuperview];
    }];
}
 }


 - (void)textViewDidEndEditing:(UITextView *)theTextView
 {
     if (![_descriptionTextView hasText]) {
         [_descriptionTextView addSubview:_placeholderLabel];
         [UIView animateWithDuration:0.15 animations:^{
             _placeholderLabel.alpha = 1.0;
         }];
     }
 }

 - (void)viewDidUnload
 {
     [self setDescriptionTextView:nil];
     [self setNameTextField:nil];
     [super viewDidUnload];
 }

@ конец

1 Ответ

0 голосов
/ 22 марта 2012

Мне кажется, textViewDidChange: вызывается только после того, как редактирование завершено.Вы, вероятно, хотите скрыть заполнитель вместо textViewDidBeginEditing:.

...