美文网首页iOS知识收录UI开发常用效果
iOS 只需几步实现生日选择器

iOS 只需几步实现生日选择器

作者: Ashen | 来源:发表于2015-12-08 16:46 被阅读3921次

    项目开发中难免会遇到让用户填写出生年月的时候,本章来介绍一下我自己写的生日选择器的ASBirthSheet;
    大致就是这个样子

    示例图
      我对生日选择器页面进行了简单的封装,算上.h文件只有两个文件,使用起来很简单;

    以下是对.h文件中的说明

    <pre><code>
    @property (nonatomic, copy) void(^GetSelectDate)(NSString *dateStr);

    @property (nonatomic, strong) NSString * selectDate;
    </code></pre>
    GetSelectDate是一个Block回调,是在选择完日期后确认后,就会触发,它返回一个日期格式为2015-12-08的字符串;
    selectDate是设置选中时的日期格式也需要是2015-12-08才能匹配;

    以下是使用方法:

    <pre><code>
    -(void)chooseBirthdayAction{

    ASBirthSelectSheet *datesheet = [[ASBirthSelectSheet alloc] initWithFrame:self.view.bounds];
    datesheet.selectDate = @"2015-12-08";
    datesheet.GetSelectDate = ^(NSString *dateStr) {
        NSLog(@"ok Date:%@", dateStr);
    };
    [self.view addSubview:datesheet];
    

    }
    </code></pre>
    使用起来很容易就这么几步,就可以实现一个简单的生日选择器;
    由于只是使用,并没有对其进行很好地封装,如果你感兴趣,可以封装的更好点,来共同交流下;
    附:
    Demo下载地址

    相关文章

      网友评论

      本文标题:iOS 只需几步实现生日选择器

      本文链接:https://www.haomeiwen.com/subject/arrehttx.html