iOS应用开发中使UITextField实现placeholder属性的方法

2020-01-15 13:33:34刘景俊

    if (textView.text.length<1) {
        textView.text = @"jb51.net";
        textView.textColor = [UIColor grayColor];
    }
}
在结束编辑的代理方法里,判断如果UITextView的text值为空,那么,就要把需要设置的placeholder赋值给UITextView的text,并且将textColor属性设置成灰色。

 

4.添加轻击手势

复制代码
UITapGestureRecognizer *tapGesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapGesture:)];
tapGesture.numberOfTapsRequired = 1; //点击次数
tapGesture.numberOfTouchesRequired = 1; //点击手指数
[self.view addGestureRecognizer:tapGesture];

 

//轻击手势触发方法
-(void)tapGesture:(UITapGestureRecognizer *)sender
{
    [self.view endEditing:YES];
}


至此,就很猥琐的实现了placeholder功能。为了方便测试,我加了一个手势。作用是用键盘消失,这样可以测试结束编辑的时候placeholder会不会显示。

 

Demo地址:iOSStrongDemo


二、通常的方法
接下来来看比较通常的方法,哈哈~那么,这一次我将简单的封装一个UITextView。暂且取名叫GGPlaceholderTextView,GG前缀看着有点任性的哈。

GGPlaceholderTextView简介:
GGPlaceholderTextView也是对text操作,具体逻辑如下:

继承UITextView,并设置placeholder属性:
注册开始编辑和结束编辑通知,然后对text做相应的操作
通过UIApplicationWillTerminateNotification通知,在APP退出的时候移除通知。
我把GGPlaceholderTextView写在下面。不过,微信里看代码还是不太方便,我已经把代码push到:iOSStrongDemo。你可以下载下来。

复制代码
GGPlaceholderTextView.h

 

#import <UIKit/UIKit.h>

@interface GGPlaceholderTextView : UITextView
@property(nonatomic, strong) NSString *placeholder;

@end


定义placeholder属性,类似于UITextField。
复制代码
GGPlaceholderTextView.m

 

#import "GGPlaceholderTextView.h"