UITextField的文本框部分文本以*的方式来显示

 1 #import "AppDelegate.h"
 2 
 3 @interface AppDelegate ()<UITextFieldDelegate>// 添加代理协议
 4 
 5 @end
 6 
 7 @implementation AppDelegate
 8 
 9 
10 - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
11     self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
12     // Override point for customization after application launch.
13     self.window.backgroundColor = [UIColor whiteColor];
14     
15 
16     UITextField *tf = [[UITextField alloc] initWithFrame:CGRectMake(60, 100, 180, 30)];
17     //确认代理
18     tf.delegate = self;
19     tf.keyboardType = UIKeyboardAppearanceDefault;
20 
21     tf.backgroundColor = [UIColor greenColor];
22     [self.window addSubview:tf];
23     
24     [self.window makeKeyAndVisible];
25     return YES;
26 }
27 
28 - (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string
29 {
30     int length = [textField.text length];
31     // 2代表*号的起始位置,9代表*号的结束位置
32     if (length > 2 && length < 9) {
33         NSMutableString *text = [textField.text mutableCopy];
34         [text replaceCharactersInRange:NSMakeRange(length - 1 , 1) withString:@"*"];
35         textField.text = text;
36     }
37     return YES;
38 }
39 
40 @end

实现的效果如下图:

            

 

转载于:https://www.cnblogs.com/lantu1989/p/4619232.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值