OC实现类似支付宝密码输入的弹窗效果

本文介绍如何利用UIKeyInput和UITextInputTraits协议,为UIView子类添加输入功能,从而创建一个类似支付宝密码输入的弹窗效果。详细讲解了实现思路、弹出视图的构建及使用方法,并展示了最终效果。
摘要由CSDN通过智能技术生成

1.思路,使用UIKeyInput协议和UITextInputTraits协议来实现让一个UIView子类具有输入功能:

@interface InputView : UIView<UIKeyInput,UITextInputTraits>
/**输入完毕*/
@property (nonatomic, copy) void(^inputComplete)(NSString *password);
@end
@interface InputView ()
/**保存密码的字符串*/
@property (nonatomic ,strong)NSMutableString *textStroe;
/**存放密码黑点的数组*/
@property (nonatomic, strong)NSMutableArray *dotArray;

@end

@implementation InputView

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        self.backgroundColor = [UIColor whiteColor];
        self.textStroe = [NSMutableString string];
        self.dotArray = [NSMutableArray array];
        
        self.layer.cornerRadius = 4;
        self.layer.masksToBounds = YES;
        self.layer.borderColor = [UIColor grayColor].CGColor;
        self.layer.borderWidth = 1;
        //绘制 竖线
        CGFloat itemW = self.width / 6;
        for (int i = 1; i < 6; i++) {
            UIView *line = [[UIView alloc]initWithFrame:CGRectMake(itemW * i, 0, 1, self.height)];
            line.backgroundColor = [UIColor grayColor];
            [self addSubview:line];
        }
        //绘制黑色的点 设置大小为20 20
        for 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值