用UIKeyInput協(xié)議實現(xiàn)支付密碼文本框

最項目有一個提現(xiàn)的功能掂恕,像支付寶拖陆、微信輸入支付密碼樣式的文本框,這樣的輪子已經(jīng)很多了竹海,用起來都不太適合自己慕蔚,所以決定自己去重復(fù)造個,大多數(shù)的實現(xiàn)方式都用一個View 又放上一個UITextField斋配,只是這個TextField 看不到孔飒,不太喜歡這種實現(xiàn)方式那有沒有更好的方式呢?那就本文的重點想說的UIKeyInput, 這個protocol 很簡單只有三個方法

@protocol UIKeyInput <UITextInputTraits>

- (BOOL)hasText;// A Boolean value that indicates whether the text-entry objects has any text. (required)YES
 //if the backing store has textual content, NO otherwise. 官方文檔的解釋我也翻譯不好 
- (void)insertText:(NSString *)text;// 插入文本
- (void)deleteBackward; // 鍵盤上的退格事件
@end

實現(xiàn)了這個協(xié)議我們就可以實現(xiàn)一個簡單文本輸入視圖了艰争,先看看實現(xiàn)的最終效果:

1.1.jpeg

代碼很簡單實現(xiàn)的這個三個協(xié)議坏瞄,就可以接受鍵盤的一些輸入了,還有一個協(xié)議我們也需要看下就是我們在使用textField 經(jīng)常用的一些東西甩卓,那就是 :UITextInputTraits 看起很陌生鸠匀,我們點進(jìn)去看看源碼:

@protocol UITextInputTraits <NSObject>

@optional

@property(nonatomic) UITextAutocapitalizationType autocapitalizationType; // default is UITextAutocapitalizationTypeSentences
@property(nonatomic) UITextAutocorrectionType autocorrectionType;         // default is UITextAutocorrectionTypeDefault
@property(nonatomic) UITextSpellCheckingType           spellCheckingType NS_AVAILABLE_IOS(5_0); // default is     UITextSpellCheckingTypeDefault;
@property(nonatomic) UIKeyboardType keyboardType;                         // default is UIKeyboardTypeDefault
@property(nonatomic) UIKeyboardAppearance keyboardAppearance;             // default is UIKeyboardAppearanceDefault
@property(nonatomic) UIReturnKeyType returnKeyType;                       // default is UIReturnKeyDefault (See note under UIReturnKeyType enum)
@property(nonatomic) BOOL enablesReturnKeyAutomatically;                  // default is NO (when YES, will automatically disable return key when text widget has zero-length contents, and will automatically enable when text widget has non-zero-length contents)
@property(nonatomic,getter=isSecureTextEntry) BOOL secureTextEntry;       // default is NO

@end

這不是我們常用的UITextField一些屬性嗎,我們可以實現(xiàn)這個協(xié)議來實現(xiàn)一些自定義的東西逾柿。下面我們來實現(xiàn)支付密碼樣式的文本框代碼很簡單就不多說了直接看:

#import <UIKit/UIKit.h>

@interface SBPasswordTextField : UIView <UIKeyInput,UITextInputTraits>

@property (nonatomic, copy, readonly)NSString *text;

@property (nonatomic, strong) UIColor *septaLineColor; // defaut black

@property (nonatomic, assign) CGFloat septaLineWidth; //default 1.0px

@property (nonatomic, strong) UIColor *dotFillColor; //default black

@property (nonatomic, assign) CGFloat dotRadius; //default 5.0

@property (nonatomic, strong) UIColor *textColor; //default black

@property (nonatomic, strong) UIFont *font; //default 14;

@property (nonatomic, assign) NSUInteger passwordLength; //default 6;

#pragma mark- UITextInputTraits

@property(nonatomic) UIKeyboardType keyboardType;

@property(nonatomic) UIReturnKeyType returnKeyType;

@property(nonatomic, getter=isSecureTextEntry) BOOL secureTextEntry;

m.文件

#import "SBPasswordTextField.h"

@interface SBPasswordTextField ()

@property (nonatomic, strong)NSMutableString * innerText;

@property (nonatomic, strong)NSMutableArray  *dotsLayers;

@property (nonatomic, strong)NSMutableArray *subTextLayers;

@property (nonatomic, assign)BOOL didLayoutSubview;

@end

@implementation SBPasswordTextField

- (instancetype)initWithCoder:(NSCoder *)aDecoder {
    self = [super initWithCoder:aDecoder];
    if (self) {
        [self setup];
    }
   return self;
}

- (instancetype)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        [self setup];
    }
    return self;
}
- (void)setup {
    _innerText = [NSMutableString new];
    _dotsLayers = [NSMutableArray arrayWithCapacity:6];
    _subTextLayers = [NSMutableArray arrayWithCapacity:6];
    _dotRadius = 5.f;
    _dotFillColor = [UIColor blackColor];
    _font = [UIFont systemFontOfSize:14];
    _textColor = [UIColor blackColor];
    _septaLineColor = [UIColor darkGrayColor];
    _septaLineWidth = 1.f;
    _keyboardType = UIKeyboardTypeNumberPad;
    _returnKeyType = UIReturnKeyDone;
    _secureTextEntry = YES;
    _passwordLength = 6;
    _secureTextEntry = YES;
    self.backgroundColor = [UIColor whiteColor];
}
- (void)layoutSubviews {
    if (_didLayoutSubview) {
        return;
    }
    [super layoutSubviews];
    CGSize  size = self.bounds.size;
    CGFloat gridWith = size.width*1.0/_passwordLength;
    CAShapeLayer *gridLayer = [CAShapeLayer layer];
    gridLayer.frame = self.bounds;
    gridLayer.strokeColor = _septaLineColor.CGColor;
    gridLayer.lineWidth = _septaLineWidth;
    UIBezierPath *gridPath = [UIBezierPath bezierPath];
    [gridPath moveToPoint:CGPointMake(0, _septaLineWidth/2.0)];
    [gridPath addLineToPoint:CGPointMake(size.width, _septaLineWidth/2.0)];
    [gridPath moveToPoint:CGPointMake(size.width, size.height-_septaLineWidth/2.0)];
    [gridPath addLineToPoint:CGPointMake(0, size.height-_septaLineWidth/2.0)];
    [gridPath moveToPoint:CGPointMake(_septaLineWidth/2.0, _septaLineWidth)];
    [gridPath addLineToPoint:CGPointMake(_septaLineWidth/2.0, size.height-_septaLineWidth)];
    for (int i = 1; i<= _passwordLength; ++i) {
        [gridPath moveToPoint:CGPointMake(gridWith*i-_septaLineWidth/2.0, _septaLineWidth/2)];
        [gridPath addLineToPoint:CGPointMake(gridWith*i-_septaLineWidth/2.0, size.height-_septaLineWidth/2)];
    }
    gridLayer.path = gridPath.CGPath;
    [self.layer addSublayer:gridLayer];
    _didLayoutSubview = YES;
}
  /**
    *  生成小黑點
    *
    *  @param index 第幾個
    *
    *  @return 當(dāng)前小黑點
    */
- (CAShapeLayer *)makeBlackDotLayerAtIndex:(NSUInteger)index {
    CAShapeLayer *layer = [CAShapeLayer layer];
    layer.fillColor = _dotFillColor.CGColor;
    CGSize  size = self.bounds.size;
    CGFloat gridWith = size.width*1.0/_passwordLength;
    layer.path = [self circlePathWithCenter:CGPointMake(gridWith*0+gridWith/2.0, size.height/2.0)].CGPath;
    return layer;
}

/**
 *  生成text 文本 注意 這種方式不適成大量文本
 *
 *  @param index 第幾個
 *
 *  @return 當(dāng)前文本
 */
- (CATextLayer *)makeTextLayerAtIndex:(NSUInteger)index {
    CATextLayer *textLayer = [CATextLayer layer];
    textLayer.alignmentMode = kCAAlignmentCenter;
    textLayer.wrapped = YES;
    textLayer.string = [_innerText substringWithRange:NSMakeRange(index, 1)];
    textLayer.contentsScale = [UIScreen mainScreen].scale;
    CFStringRef fontName = (__bridge CFStringRef)_font.fontName;
    CGFontRef fontRef = CGFontCreateWithFontName(fontName);
    textLayer.font = fontRef;
    textLayer.fontSize = _font.pointSize;
    textLayer.foregroundColor = _textColor.CGColor;
    CGFontRelease(fontRef);

    return textLayer;
}

/**
  *  計算實心小圓點
  *
  *  @param center 圓心
  *
  *  @return 圓的路徑
  */
- (UIBezierPath *)circlePathWithCenter:(CGPoint)center{
    return [UIBezierPath bezierPathWithArcCenter:center radius:_dotRadius startAngle:0 endAngle:2*M_PI clockwise:YES];
}

- (NSString *)text {
   return [_innerText copy];
}
  #pragma mark -
  #pragma mark Respond to touch and become first responder.

- (BOOL)canBecomeFirstResponder {
    return YES;
}

#pragma mark -
#pragma mark UIKeyInput Protocol Methods
- (BOOL)hasText {
    return (self.innerText.length >0);
}

- (void)insertText:(NSString *)theText {
    if (_innerText.length == _passwordLength) {
        return;
    }
    [self.innerText appendString:theText];
    [self addBlackDotOrTextAtIndex:_innerText.length-1];
}
/**
 *  添加小圓點或文本到相應(yīng)的框內(nèi)
 *
 *  @param index 位置
 */
- (void)addBlackDotOrTextAtIndex:(NSUInteger)index {
    if (_secureTextEntry) {
        CAShapeLayer *layer = [self makeBlackDotLayerAtIndex:index];
        CGSize  size = self.bounds.size;
        CGFloat gridWith = size.width*1.0/_passwordLength;
        layer.frame = CGRectMake(gridWith*index, 0, gridWith, size.height);
        [self.layer addSublayer:layer];
        [_dotsLayers addObject:layer];
    } else {
        CATextLayer *layer = [self makeTextLayerAtIndex:index];
        CGSize  size = self.bounds.size;
        CGFloat gridWith = size.width*1.0/_passwordLength;
        layer.frame = CGRectMake(gridWith*index, (size.height-_font.pointSize-2)/2.0, gridWith,_font.pointSize+2);
        [self.layer addSublayer:layer];
        [_subTextLayers addObject:layer];
    }

}
/**
 *  刪除文本
 */
- (void)deleteText {
    if (_secureTextEntry) {
        CAShapeLayer *layer = [_dotsLayers lastObject];
        [layer removeFromSuperlayer];
        [_dotsLayers removeLastObject];
    }else{
        CATextLayer *layer = [_subTextLayers lastObject];
        [layer removeFromSuperlayer];
        [_subTextLayers removeLastObject];
    }
}

代碼很簡單自己又定義了一些屬性可以方便的實現(xiàn)自定義的一些效果:比如邊框顏色 缀棍,邊框粗細(xì),黑色圓點的大小机错,顏色爬范,明文狀態(tài)的文字大小,顏色等弱匪。也支持xib 拖個View 只需改成相關(guān)的類就可以了青瀑。項目還很粗糙(上傳到了GitHub了地址:
https://github.com/lsb332/SBPasswordTextField
只是提供一種思路而已,附兩張實現(xiàn)圖:

1.2.jpeg
1.3.jpeg
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末萧诫,一起剝皮案震驚了整個濱河市斥难,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌帘饶,老刑警劉巖哑诊,帶你破解...
    沈念sama閱讀 210,978評論 6 490
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異及刻,居然都是意外死亡镀裤,警方通過查閱死者的電腦和手機穷当,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 89,954評論 2 384
  • 文/潘曉璐 我一進(jìn)店門,熙熙樓的掌柜王于貴愁眉苦臉地迎上來淹禾,“玉大人馁菜,你說我怎么就攤上這事×宀恚” “怎么了汪疮?”我有些...
    開封第一講書人閱讀 156,623評論 0 345
  • 文/不壞的土叔 我叫張陵,是天一觀的道長毁习。 經(jīng)常有香客問我智嚷,道長,這世上最難降的妖魔是什么纺且? 我笑而不...
    開封第一講書人閱讀 56,324評論 1 282
  • 正文 為了忘掉前任盏道,我火速辦了婚禮,結(jié)果婚禮上载碌,老公的妹妹穿的比我還像新娘猜嘱。我一直安慰自己,他們只是感情好嫁艇,可當(dāng)我...
    茶點故事閱讀 65,390評論 5 384
  • 文/花漫 我一把揭開白布朗伶。 她就那樣靜靜地躺著,像睡著了一般步咪。 火紅的嫁衣襯著肌膚如雪论皆。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,741評論 1 289
  • 那天猾漫,我揣著相機與錄音点晴,去河邊找鬼。 笑死悯周,一個胖子當(dāng)著我的面吹牛粒督,可吹牛的內(nèi)容都是我干的。 我是一名探鬼主播队橙,決...
    沈念sama閱讀 38,892評論 3 405
  • 文/蒼蘭香墨 我猛地睜開眼坠陈,長吁一口氣:“原來是場噩夢啊……” “哼萨惑!你這毒婦竟也來了捐康?” 一聲冷哼從身側(cè)響起,我...
    開封第一講書人閱讀 37,655評論 0 266
  • 序言:老撾萬榮一對情侶失蹤庸蔼,失蹤者是張志新(化名)和其女友劉穎解总,沒想到半個月后,有當(dāng)?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體姐仅,經(jīng)...
    沈念sama閱讀 44,104評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡花枫,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 36,451評論 2 325
  • 正文 我和宋清朗相戀三年刻盐,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學(xué)時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片劳翰。...
    茶點故事閱讀 38,569評論 1 340
  • 序言:一個原本活蹦亂跳的男人離奇死亡敦锌,死狀恐怖,靈堂內(nèi)的尸體忽然破棺而出佳簸,到底是詐尸還是另有隱情乙墙,我是刑警寧澤,帶...
    沈念sama閱讀 34,254評論 4 328
  • 正文 年R本政府宣布生均,位于F島的核電站听想,受9級特大地震影響,放射性物質(zhì)發(fā)生泄漏马胧。R本人自食惡果不足惜汉买,卻給世界環(huán)境...
    茶點故事閱讀 39,834評論 3 312
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望佩脊。 院中可真熱鬧蛙粘,春花似錦、人聲如沸威彰。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,725評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽抱冷。三九已至崔列,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間旺遮,已是汗流浹背赵讯。 一陣腳步聲響...
    開封第一講書人閱讀 31,950評論 1 264
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留耿眉,地道東北人边翼。 一個月前我還...
    沈念sama閱讀 46,260評論 2 360
  • 正文 我出身青樓,卻偏偏與公主長得像鸣剪,于是被迫代替她去往敵國和親组底。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當(dāng)晚...
    茶點故事閱讀 43,446評論 2 348

推薦閱讀更多精彩內(nèi)容