iOS 自定義UITextField

在項目需求上遇到一個驗證碼輸入的需求淹禾,具體UI參看下圖:


image.png
image.png

實現(xiàn)時使用了自定義UITextFiled相關知識渊抽,啥也不說貼代碼吧。

#import <UIKit/UIKit.h>

@interface YQSecurityCodeTextField : UITextField
@property (nonatomic ,weak) id<UITextFieldDelegate>SCDelegate;
- (instancetype)initWithDelegate:(id<UITextFieldDelegate>)SCDelegate;
@end
#import "YQSecurityCodeTextField.h"
static CGFloat margin = 28;
#define linePathWidth (SCREEN_WIDTH - 28*2)/11
@interface YQSecurityCodeTextField ()<UITextFieldDelegate>
@property (nonatomic ,strong) NSMutableArray *linesArray;
@property (nonatomic ,strong) NSMutableArray *deleteArray;
@property (nonatomic ,assign) NSInteger lastLength;
@end


@implementation YQSecurityCodeTextField


- (instancetype)initWithDelegate:(id<UITextFieldDelegate>)SCDelegate
{
    self = [super init];
    if (self) {
        _SCDelegate = SCDelegate;
        [self initialize];
    }
    return self;
}

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


-(CGRect)textRectForBounds:(CGRect)bounds {
    return CGRectMake(linePathWidth/2, 0, bounds.size.width-linePathWidth/4, bounds.size.height);
}

-(CGRect)editingRectForBounds:(CGRect)bounds {
    return CGRectMake(linePathWidth/2, 0, bounds.size.width-linePathWidth/4, bounds.size.height);
}

//初始化時設定好一些基本屬性,然后注冊UITextFieldTextDidChangeNotification通知动看,在這個通知的接受事件方法里改變下劃線的繪制
- (void)initialize {
    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(didChange:) name:UITextFieldTextDidChangeNotification object:self];
    self.linesArray = [[NSMutableArray alloc] initWithCapacity:6];
    self.deleteArray = [[NSMutableArray alloc] initWithCapacity:6];
    self.lastLength = 0;
    self.font = [UIFont fontWithName:@"PingFang-SC-Medium" size:26];
    
    self.delegate = self;
    self.tintColor = [UIColor clearColor];

    self.defaultTextAttributes = @{NSFontAttributeName :[UIFont fontWithName:@"PingFang-SC-Medium" size:26],
                                   NSKernAttributeName :@((SCREEN_WIDTH-margin*2-16*6-linePathWidth*2)/5)  //字間距
                                   };
    [self drawLine];
}

#pragma mark - 先準備六條貝塞爾曲線
- (void)drawLine {
    for (NSInteger index = 0 ; index<6; index++) {
        UIBezierPath *path = [UIBezierPath bezierPath];
        
        //6條曲線均是繪制在textField上的,每條曲線線寬及間隔都是linePathWidth
        
        [path moveToPoint:CGPointMake(2*index*linePathWidth, 20)];
        [path addLineToPoint:CGPointMake((2*index+1)*linePathWidth, 20)];
        path.lineWidth = 2.5;
        [UICOLOR_WITH_RGBINT(0x3d3d3d) setStroke];
        [self.linesArray addObject:path];
    }
}

- (void)deleteLine
{
    if (self.linesArray.count == 0) {
        return;
    }
    [self.deleteArray addObject:self.linesArray.firstObject];
    [self.linesArray removeObjectAtIndex:0];
    [self setNeedsDisplay];
}

- (void)addLine {
    if (self.deleteArray.count ==0) {
        return;
    }
    [self.linesArray insertObject:self.deleteArray.lastObject atIndex:0];
    [self.deleteArray removeLastObject];
    [self setNeedsDisplay];
}


// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect {
    [super drawRect:rect];
    for (NSInteger index = 0 ; index<self.linesArray.count; index++) {
        UIBezierPath *path = [self.linesArray objectAtIndex:index];
        [path stroke];
    }
}

#pragma mark - 根據(jù)字數(shù)差 爪幻,來加減橫線
- (void)didChange:(NSNotification *)notify {
    if (notify.object != self) {
        return;
    }
    YQSecurityCodeTextField *field = notify.object;
    NSInteger minusLength = field.text.length - self.lastLength;
    if (minusLength>0) {
        for (NSInteger index = 0 ; index<minusLength ; index++) {
            [self deleteLine];
        }
    }else {
        for (NSInteger index = 0 ; index< labs(minusLength); index++) {
            [self addLine];
        }
    }
    self.lastLength = field.text.length;
}

//處理UITextFiled的幾個delegate
- (BOOL)textFieldShouldBeginEditing:(UITextField *)textField {
    
    if ([self.SCDelegate respondsToSelector:@selector(textFieldShouldBeginEditing:)]) {
        return [self.SCDelegate textFieldShouldBeginEditing:textField];
    }
    return YES;
}

- (void)textFieldDidBeginEditing:(UITextField *)textField {
    if ([self.SCDelegate respondsToSelector:@selector(textFieldDidBeginEditing:)]) {
        [self.SCDelegate textFieldDidBeginEditing:textField];
    }
}

- (BOOL)textFieldShouldEndEditing:(UITextField *)textField {
    if ([self.SCDelegate respondsToSelector:@selector(textFieldShouldEndEditing:)]) {
        return [self.SCDelegate textFieldShouldEndEditing:textField];
    }
    return YES;
}

- (void)textFieldDidEndEditing:(UITextField *)textField {
    if ([self.SCDelegate respondsToSelector:@selector(textFieldDidEndEditing:)]) {
        [self.SCDelegate textFieldDidEndEditing:textField];
    }
}

- (BOOL)textField:(UITextField *)textField shouldChangeCharactersInRange:(NSRange)range replacementString:(NSString *)string {
    
    if ([self.SCDelegate respondsToSelector:@selector(textField:shouldChangeCharactersInRange:replacementString:)]) {
        
        BOOL should = [self.SCDelegate textField:textField shouldChangeCharactersInRange:range replacementString:string];
        NSDictionary* d = textField.typingAttributes;
        NSMutableDictionary* md = [NSMutableDictionary dictionaryWithDictionary:d];
        md[NSKernAttributeName] = @(25);
        
        textField.typingAttributes = md;
        return should;
    }
    
    return YES;
}

- (BOOL)textFieldShouldClear:(UITextField *)textField {
    if ([self.SCDelegate respondsToSelector:@selector(textFieldShouldClear:)]) {
        return [self.SCDelegate textFieldShouldClear:textField];
    }
    return YES;
}

- (BOOL)textFieldShouldReturn:(UITextField *)textField {
    if ([self.SCDelegate respondsToSelector:@selector(textFieldShouldReturn:)]) {
        return [self.SCDelegate textFieldShouldReturn:textField];
    }
    return YES;
}

-(BOOL)canPerformAction:(SEL)action withSender:(id)sender {
    UIMenuController *menuController = [UIMenuController sharedMenuController];
    if (menuController) {
        [UIMenuController sharedMenuController].menuVisible = NO;
    }
    if (action == @selector(paste:))
        return NO;
    if (action == @selector(select:))
        return NO;
    if (action == @selector(selectAll:))
        return NO;
    if (action == @selector(cut:))
        return NO;
    if (action == @selector(copy:))
        return NO;
    return NO;
}

-(void)dealloc {
    [[NSNotificationCenter defaultCenter] removeObserver:self];
    NSLog(@"自定義驗證碼textFiled釋放");
}

@end

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末菱皆,一起剝皮案震驚了整個濱河市须误,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌仇轻,老刑警劉巖京痢,帶你破解...
    沈念sama閱讀 212,816評論 6 492
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異篷店,居然都是意外死亡祭椰,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 90,729評論 3 385
  • 文/潘曉璐 我一進店門疲陕,熙熙樓的掌柜王于貴愁眉苦臉地迎上來方淤,“玉大人,你說我怎么就攤上這事蹄殃⌒” “怎么了?”我有些...
    開封第一講書人閱讀 158,300評論 0 348
  • 文/不壞的土叔 我叫張陵诅岩,是天一觀的道長邑蒋。 經常有香客問我,道長按厘,這世上最難降的妖魔是什么医吊? 我笑而不...
    開封第一講書人閱讀 56,780評論 1 285
  • 正文 為了忘掉前任,我火速辦了婚禮逮京,結果婚禮上卿堂,老公的妹妹穿的比我還像新娘。我一直安慰自己懒棉,他們只是感情好草描,可當我...
    茶點故事閱讀 65,890評論 6 385
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著策严,像睡著了一般穗慕。 火紅的嫁衣襯著肌膚如雪。 梳的紋絲不亂的頭發(fā)上妻导,一...
    開封第一講書人閱讀 50,084評論 1 291
  • 那天逛绵,我揣著相機與錄音,去河邊找鬼倔韭。 笑死术浪,一個胖子當著我的面吹牛,可吹牛的內容都是我干的寿酌。 我是一名探鬼主播胰苏,決...
    沈念sama閱讀 39,151評論 3 410
  • 文/蒼蘭香墨 我猛地睜開眼,長吁一口氣:“原來是場噩夢啊……” “哼醇疼!你這毒婦竟也來了硕并?” 一聲冷哼從身側響起法焰,我...
    開封第一講書人閱讀 37,912評論 0 268
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎倔毙,沒想到半個月后壶栋,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 44,355評論 1 303
  • 正文 獨居荒郊野嶺守林人離奇死亡普监,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 36,666評論 2 327
  • 正文 我和宋清朗相戀三年贵试,在試婚紗的時候發(fā)現(xiàn)自己被綠了。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片凯正。...
    茶點故事閱讀 38,809評論 1 341
  • 序言:一個原本活蹦亂跳的男人離奇死亡毙玻,死狀恐怖,靈堂內的尸體忽然破棺而出廊散,到底是詐尸還是另有隱情桑滩,我是刑警寧澤,帶...
    沈念sama閱讀 34,504評論 4 334
  • 正文 年R本政府宣布允睹,位于F島的核電站运准,受9級特大地震影響,放射性物質發(fā)生泄漏缭受。R本人自食惡果不足惜胁澳,卻給世界環(huán)境...
    茶點故事閱讀 40,150評論 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一處隱蔽的房頂上張望米者。 院中可真熱鬧韭畸,春花似錦、人聲如沸蔓搞。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,882評論 0 21
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽喂分。三九已至锦庸,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間蒲祈,已是汗流浹背甘萧。 一陣腳步聲響...
    開封第一講書人閱讀 32,121評論 1 267
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留讳嘱,地道東北人幔嗦。 一個月前我還...
    沈念sama閱讀 46,628評論 2 362
  • 正文 我出身青樓,卻偏偏與公主長得像沥潭,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子嬉挡,可洞房花燭夜當晚...
    茶點故事閱讀 43,724評論 2 351

推薦閱讀更多精彩內容