iOS 类似微信支付宝密码登录框效果

2018-04-26  本文已影响128人  笑啥风云
Simulator Screen Shot - iPhone 8 - 2018-04-26 at 14.00.04.png

公司项目做一个效果类似于微信支付宝的密码框,这里对效果做了一个封装:
由于要求输入框不能有拷贝粘贴的效果,这里就写了一个继承UITextField的一个子类:NOCopyTextField,并重写- (BOOL)canPerformAction:(SEL)action withSender:(nullable id)sender;

import "WXPasswordView.h"

@property (nonatomic,strong) NOCopyTextField *textfield;
@property (nonatomic,strong) NSMutableArray *btnsArr;

import "WXPasswordView.h"

define Selfsize self.bounds.size

@interface WXPasswordView()<UITextFieldDelegate>
{
int _count;
}
@end
@implementation WXPasswordView

}

上一篇 下一篇

猜你喜欢

热点阅读