UITableViewCell上的输入框,输入不同内容

一、实现效果

效果图.png

二、项目结构

项目结构图.png

三、代码部分

1. 项目使用Cocoapods管理
  • 在控制台对创建的项目进行创建pods,创建Podfile文件,使用命令vi Podfile进入到Podfile文件里面,按下键盘i进入编辑状态
Cocoapods.png
  • 输入我们需要使用的第三方库,此项目中使用了Masonry来进行适配
platform :ios, '8.0'
target 'InputInfoDemo' do
pod 'Masonry'
end
  • 在写好上一步的代码后,按ESC,然后输入:wq回车退出编辑状态
退出编辑.png
  • 使用命令pod instal进行第三方库安装,当出现以下内容的时候表示你已经装好Masonry了
2.创建需要显示的自定义UITableViewCell

**.h文件**

//
//  InputStrTableViewCell.h
//
//  Created by Jackeroo on 2017/5/27.
//  Copyright © 2017年 Jackeroo. All rights reserved.
//

#import <UIKit/UIKit.h>
@interface InputStrTableViewCell : UITableViewCell
@property (nonatomic, strong) UITextField *textField;

/**
 设置cell信息

 @param title cell左侧标题
 @param desc  占位文字信息
 @param type 键盘类型  0、表示正常键盘 1、表示数字键盘
 @param text 填充文字
 @param textFieldBlock 输入内容回调
 */
-(void)setCellInfo:(NSString*)title withInputDesc:(NSString*)desc withKeybordType:(NSInteger )type withText:(NSString *)text WithReturnBlock:(void (^)(NSString *result))textFieldBlock;

@end

**.m文件**

//
//  InputStrTableViewCell.m
//
//  Created by Jackeroo on 2017/5/27.
//  Copyright © 2017年 Jackeroo. All rights reserved.
//
//  颜色
#define RGBA(r,g,b,a)     [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:a]
#import "InputStrTableViewCell.h"
#import "Masonry.h"
#import "View+MASShorthandAdditions.h"

@interface InputStrTableViewCell()<UITextFieldDelegate>
//  标题Label
@property (nonatomic, strong) UILabel *titleLabel;

@end

@implementation InputStrTableViewCell{
//  输入回调
     void (^_block)(NSString *inputResult);
}

- (void)awakeFromNib {
    [super awakeFromNib];
    // Initialization code
}
//  初始化
- (instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier {
    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
    if (self) {
        self.backgroundColor =RGBA(242, 242, 242, 1);
        self.selectionStyle = UITableViewCellSelectionStyleNone;
        self.titleLabel = [[UILabel alloc] init];
        self.titleLabel.font =[UIFont systemFontOfSize:14];
        self.titleLabel.textColor = [UIColor blackColor];

        self.textField = [[UITextField alloc] init];
        self.textField.font = [UIFont systemFontOfSize:12];
        self.textField.textColor = [UIColor grayColor];
        self.textField.textAlignment = NSTextAlignmentRight;
        self.textField.delegate = self;
        self.textField.backgroundColor = [UIColor whiteColor];
        self.textField.clearButtonMode = UITextFieldViewModeAlways;
        //  添加输入完成会回调通知
          [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(textFieldChanging:) name:UITextFieldTextDidChangeNotification object:self.textField];
        [self addSubview];
        [self autoLayout];
        CGFloat scale = [[UIScreen mainScreen] scale];
        CGFloat width = scale > 0.0 ? 1.0 / scale : 1.0;
        self.layer.borderWidth = width;
        self.layer.borderColor = [UIColor lightGrayColor].CGColor;

    }
    return self;

}

- (void)setFrame:(CGRect)frame
{
    frame.origin.y -= 0.5;//整体向上 移动0.5
    frame.size.height += 0.5;//间隔为0.5
    [super setFrame:frame];
}

/**
 * 添加页面
 */
-(void)addSubview{

    [self.contentView addSubview:self.titleLabel];
    [self.contentView addSubview:self.textField];

}
/**
 * 页面自动适配
 */
-(void) autoLayout{

    [self.titleLabel mas_makeConstraints:^(MASConstraintMaker *make) {
        make.leading.offset(12.5);
        make.centerY.equalTo(self.contentView.mas_centerY);
        make.width.equalTo(@100);
        make.trailing.equalTo(self.textField.mas_leading).offset(-10);
    }];

    [self.textField mas_makeConstraints:^(MASConstraintMaker *make) {
        make.centerY.equalTo(self.contentView.mas_centerY);
        make.trailing.offset(-10);
        make.leading.equalTo(self.titleLabel.mas_trailing).offset(10);
        make.top.offset(10);
        make.bottom.offset(-10);
    }];

}
- (void)dealloc{
    [[NSNotificationCenter defaultCenter] removeObserver:self name:UITextFieldTextDidChangeNotification object:nil];
}
-(void)textFieldChanging:(id)sender{
    if (_block) {
        _block(self.textField.text);
    }
}
-(void)setCellInfo:(NSString*)title withInputDesc:(NSString*)desc withKeybordType:(NSInteger)type withText:(NSString *)text WithReturnBlock:(void (^)(NSString *))textFieldBlock{
    if (type==1) {
        self.textField.keyboardType = UIKeyboardTypeNumberPad;
    }
        _textField.text =text;
        _textField.clearButtonMode = UITextFieldViewModeWhileEditing;
    _block = textFieldBlock;
    _titleLabel.text = title;
    _textField.placeholder = desc;
}

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    // Configure the view for the selected state
}

@end
3.创建一个Info对象模型,存入所填写的内容
#import <Foundation/Foundation.h>

@interface Info : NSObject
@property (nonatomic,copy) NSString *name1;
@property (nonatomic,copy) NSString *name2;
@property (nonatomic,copy) NSString *name3;
@property (nonatomic,copy) NSString *name4;
@property (nonatomic,copy) NSString *name5;
@property (nonatomic,copy) NSString *name6;
@property (nonatomic,copy) NSString *name7;

@end
4.使用方法
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath{
      NSString  *identifier = [NSString stringWithFormat:@"InputStrTableViewCellIdentifier%ld",indexPath.row];
    InputStrTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (!cell) {
        cell =[[InputStrTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        Info *info = [[Info alloc] init];
        if (indexPath.row==0) {
            [cell setCellInfo:@"配偶信息:" withInputDesc:info.name1>0?info.name1:@"请输入配偶信息" withKeybordType:0 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name1 =result;
            }];
        }else if (indexPath.row==1){
            [cell setCellInfo:@"身份证:" withInputDesc:info.name2>0?info.name2:@"请输入身份证号码" withKeybordType:1 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name2 =result;
            }];
        }else if (indexPath.row==2){
            [cell setCellInfo:@"单位名称:" withInputDesc:info.name3>0?info.name3:@"请输入单位名称" withKeybordType:0 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name3 =result;
            }];
        }else if (indexPath.row==3){
            [cell setCellInfo:@"所在部门:" withInputDesc:info.name4>0?info.name4:@"请输入所在部门" withKeybordType:0 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name4 =result;
            }];

        }else if (indexPath.row==4){
            [cell setCellInfo:@"月均工资收入:" withInputDesc:info.name5>0?info.name5:@"请输入月均工资收入" withKeybordType:1 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name5 =result;
            }];

        }else if (indexPath.row==5){
            [cell setCellInfo:@"办公室电话:" withInputDesc:info.name6>0?info.name6:@"请输入办公室电话" withKeybordType:1 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name6 =result;
            }];
        }else{
            [cell setCellInfo:@"移动电话:" withInputDesc:info.name7>0?info.name1:@"请输入移动电话" withKeybordType:1 withText:@"" WithReturnBlock:^(NSString *result) {
                info.name7 =result;
            }];
        }

    }

    return cell;
}

注:只是粗糙的实现了功能,还有部分可优化的,代码已上传Github,喜欢的欢迎star一下,以资鼓励,嘿嘿,git地址

ps:更多文章请点击这里

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,033评论 6 478
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,725评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,473评论 0 338
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,846评论 1 277
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,848评论 5 368
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,691评论 1 282
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,053评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,700评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 42,856评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,676评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,787评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,430评论 4 321
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,034评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,990评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,218评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,174评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,526评论 2 343

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,019评论 4 62
  • Android 自定义View的各种姿势1 Activity的显示之ViewRootImpl详解 Activity...
    passiontim阅读 171,465评论 25 707
  • 我没那么重要,让一个人意识到这一点并不容易。马斯洛的人性需求里,价值实现是很重要的一环。我们需要有个人价值的实现,...
    Foxuan阅读 480评论 0 0
  • 11月11日的生日花,紫金花。 双十一的时间里,在一些北方已经有雪花飘飘了,洋洋洒洒地下起雪,比南方还是薄装的随意...
    冬林探花阅读 3,100评论 0 1
  • 苦逼it女
    困了的野猫阅读 95评论 0 0